1. bab22be SF bug 533198: Complex power underflow raises exception. by Tim Peters · 23 years ago
  2. 047c05e Do not insert characters for unicode-escape decoders if the error mode by Martin v. Löwis · 23 years ago
  3. 25f3dc2 Drop the PyCore_* memory API. by Neil Schemenauer · 23 years ago
  4. d91eec9 Re-enable GC of method objects. by Neil Schemenauer · 23 years ago
  5. dbf409f Re-enable GC of iter objects. by Neil Schemenauer · 23 years ago
  6. 11f5be8 Simpilify PyCore_* macros by assuming the function prototypes for by Neil Schemenauer · 23 years ago
  7. 7e30548 Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault by Guido van Rossum · 23 years ago
  8. 2400831 SF patch 530070: pydoc regression, from Martin and Guido. by Tim Peters · 23 years ago
  9. f6eebbb Patch #530105: Allow file object may to be subtyped by Martin v. Löwis · 23 years ago
  10. 0c160a0 Patch #517521: Consider byte strings before Unicode strings by Martin v. Löwis · 23 years ago
  11. 0628dcf "Fix" for SF bug #520644: __slots__ are not pickled. by Guido van Rossum · 23 years ago
  12. cd637aa Fix for SF bug #529050 - ModuleType.__new__ crash. by Guido van Rossum · 23 years ago
  13. 8f01b68 Change Windows file.truncate() to (a) restore the original file position, by Tim Peters · 23 years ago
  14. fb05db2 file_truncate(): provide full "large file" support on Windows, by by Tim Peters · 23 years ago
  15. dfce3bf Bugfix candidate. Adapter from SF patch 528038; fixes SF bug 527816. by Guido van Rossum · 23 years ago
  16. c8bb9eb Patch #494047: removes 64-bit ?: to cope on plan9. by Martin v. Löwis · 23 years ago
  17. dc5a508 SF bug 525705: [2.2] underflow raise OverflowException. by Tim Peters · 23 years ago
  18. 0522d98 Fix leak of NotImplemented in previous checkin to PyNumber_Add(). by Jeremy Hylton · 23 years ago
  19. 6ae6a43 Fix for SF bug 516727: MyInt(2) + "3" -> NotImplemented by Jeremy Hylton · 23 years ago
  20. 70ffddf Guido pointed out that I was missing a couple decrefs. by Michael W. Hudson · 23 years ago
  21. ce358e3 Apply (my) patch: by Michael W. Hudson · 23 years ago
  22. 7bb466a A fix & test for by Michael W. Hudson · 23 years ago
  23. a5d78cc Whether platform malloc(0) returns NULL has nothing to do with whether by Tim Peters · 23 years ago
  24. 5329cdb _PyLong_Copy(): was creating a copy of the absolute value, but should by Tim Peters · 23 years ago
  25. db30ac4 Revert the last odd change to PyNumber_Long: the problem it was trying by Tim Peters · 23 years ago
  26. 2eb0b87 SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects by Guido van Rossum · 23 years ago
  27. 5e9c80d %#x/%#X format conversion cleanup (see patch #450267): by Andrew MacIntyre · 23 years ago
  28. c487439 OS/2 EMX port changes (Objects part of patch #450267): by Andrew MacIntyre · 23 years ago
  29. f9bd6b0 Allow __doc__ to be of arbitrary type. Patch by James Henstridge, by Martin v. Löwis · 23 years ago
  30. a5854c2 Patch #508038: Do not use a type as a variable name. by Martin v. Löwis · 23 years ago
  31. fa2e4c2 Declare real and imag as read-only attributes. by Guido van Rossum · 24 years ago
  32. bd3be8f Fix to the UTF-8 encoder: it failed on 0-length input strings. by Marc-André Lemburg · 24 years ago
  33. dc724d6 Cosmetics. by Marc-André Lemburg · 24 years ago
  34. e7c6ee4 Whitespace fixes. by Marc-André Lemburg · 24 years ago
  35. 3688a88 Fix for the UTF-8 memory allocation bug and the UTF-8 encoding by Marc-André Lemburg · 24 years ago
  36. e75bfde Bugfix candidate. by Guido van Rossum · 24 years ago
  37. 2a47c0f Fix spelling mistakes. Bugfix candidates. by Neal Norwitz · 24 years ago
  38. 1f803f7 Updated patch #487906: Revise inline docs. by Martin v. Löwis · 24 years ago
  39. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 24 years ago
  40. b0d71d0 Implement PyObject_DelItemString. Fixes #498915. by Martin v. Löwis · 24 years ago
  41. 649b759 SF Patch #494863, file.xreadlines() should raise ValueError if file is closed by Neal Norwitz · 24 years ago
  42. 2a908f6 proxy_compare(): Make sure that we unwrap both objects being compared if by Fred Drake · 24 years ago
  43. f884b74 - PyType_Ready(): Initialize the ob_type field to &PyType_Type if it's by Guido van Rossum · 24 years ago
  44. 564980b Portability fix: Not every compiler implements the extension of by Sjoerd Mullender · 24 years ago
  45. 33c1a88 SF patch #493452: docstrings for staticmethod/classmethod (Skip Montanaro) by Guido van Rossum · 24 years ago
  46. 2b8235e SF bug #493561: incorrect format string descrobject.c (Neal Norwitz) by Guido van Rossum · 24 years ago
  47. e54616c (Merge into trunk.) by Guido van Rossum · 24 years ago
  48. 526c7a0 Ensure that complex() only accepts a string argument as the first arg, by Fred Drake · 24 years ago
  49. 77d8a4f float_floor_div: An expression like 3.//1j crashed the interpreter, or by Tim Peters · 24 years ago
  50. 63a3571 float_int_div(): For clarity, move this closer to the other float by Tim Peters · 24 years ago
  51. f582b82 SF bug #491415 PyDict_UpdateFromSeq2() unused by Tim Peters · 24 years ago
  52. ef8ebd1 Make sure that when we invoke callback functions associated with weak by Fred Drake · 24 years ago
  53. 7171f1c Well what do you know. The Python implementation contained the same by Guido van Rossum · 24 years ago
  54. ba2485f Fix the Python property class in a comment right. by Guido van Rossum · 24 years ago
  55. b75ba91 property_descr_get(): Fix a curious bug in the property() type: when by Guido van Rossum · 24 years ago
  56. 169192e SF patch #491049 (David Jacobs): Small PyString_FromString optimization by Guido van Rossum · 24 years ago
  57. f70590f _PyTuple_Resize(): this dumped core on tuple(globals()) for me. Turns by Guido van Rossum · 24 years ago
  58. 62de65b PyString_FromString: this requires its argument be non-NULL, but doesn't by Tim Peters · 24 years ago
  59. 604ddf8 Fix for #489669 (Neil Norwitz): memory leak in test_descr (unicode). by Guido van Rossum · 24 years ago
  60. 1a48ca8 Fix memory leak in dict_to_map(), SF bug [ #485152 ] memory leak in test_scope. by Jeremy Hylton · 24 years ago
  61. 7802a53 Little stuff. by Jeremy Hylton · 24 years ago
  62. 14227b4 The previous checkin to clear __slots__ variables did a little bit of by Guido van Rossum · 24 years ago
  63. 33bab01 Fix SF bug #489581: __slots__ leak. by Guido van Rossum · 24 years ago
  64. d331cb5 At the PythonLabs meeting someone mentioned it would make Jim really by Guido van Rossum · 24 years ago
  65. a3c01ce SF bug #488480: integer multiply to return -max_int-1. by Tim Peters · 24 years ago
  66. 64b206c Fix SF bug #486144: Uninitialized __slot__ vrbl is None. by Guido van Rossum · 24 years ago
  67. 03b3f04 long_mul(): The PyNumber_Multiply() call can return a long if the by Guido van Rossum · 24 years ago
  68. ebca9fc PyObject_Generic{Get,Set}Attr(): ensure that the attribute name is a by Guido van Rossum · 24 years ago
  69. be52346 function_call(): Remove a bogus (and I mean *really* bogus) call to by Guido van Rossum · 24 years ago
  70. dbb53d9 Fix of SF bug #475877 (Mutable subtype instances are hashable). by Guido van Rossum · 24 years ago
  71. 5b443c6 Address SF patch #480716 as well as related issues. by Guido van Rossum · 24 years ago
  72. 8f1ea71 Add more inline documentation, as contributed in #487906. by Martin v. Löwis · 24 years ago
  73. 9161c8b PyString_FromFormatV, string_repr: document why these use sprintf by Tim Peters · 24 years ago
  74. 1d5b3f2 Fix for SF bug #485678. by Guido van Rossum · 24 years ago
  75. d132750 Patch 487906: update inline docs. by Martin v. Löwis · 24 years ago
  76. 4222104 SF bug #487743: test_builtin fails on 64 bit platform. by Tim Peters · 24 years ago
  77. b3be216 Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the by Jack Jansen · 24 years ago
  78. 97019e4 PyFloat_AsStringEx(): This function takes an output char* but doesn't by Tim Peters · 24 years ago
  79. c1bbcb8 PyFile_WriteString(): change prototype so that the string arg is by Tim Peters · 24 years ago
  80. d586756 weakref_repr(), proxy_repr(): Conversion of sprintf() to by Barry Warsaw · 24 years ago
  81. e5c492d formatfloat(), formatint(): Conversion of sprintf() to PyOS_snprintf() by Barry Warsaw · 24 years ago
  82. 312af42 structseq_new(): Conversion of sprintf() to PyOS_snprintf() for buffer by Barry Warsaw · 24 years ago
  83. 6197509 PyInt_FromString(), int_repr(), int_oct(), int_hex(): Conversion of by Barry Warsaw · 24 years ago
  84. af8aef9 PyFloat_FromString(): Conversion of sprintf() to PyOS_snprintf() for by Barry Warsaw · 24 years ago
  85. 01d697a complex_to_buf(), complex_subtype_from_c_complex(): Conversion of by Barry Warsaw · 24 years ago
  86. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 24 years ago
  87. 11326de Fix for bug #485951: repr diff between string and unicode. by Marc-André Lemburg · 24 years ago
  88. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 24 years ago
  89. 64585f6 PyObject_GetItem(), PyObject_SetItem(), PyObject_DelItem(): Fix a few by Guido van Rossum · 24 years ago
  90. 72f8213 Fix for bug #438164: %-formatting using Unicode objects. by Marc-André Lemburg · 24 years ago
  91. a91e964 Changing diapers reminded Guido that he wanted to allow for some measure by Tim Peters · 24 years ago
  92. 89c3a22 Add PyObject_CheckReadBuffer(), which returns true if its argument by Jeremy Hylton · 24 years ago
  93. a27a150 open_the_file(): Explicitly set errno to 0 before calling fopen(). by Tim Peters · 24 years ago
  94. 1144867 open_the_file(): this routine has a borrowed reference to the file by Tim Peters · 24 years ago
  95. 41c8321 Fix SF buf #476953: Bad more for opening file gives bad msg. by Jeremy Hylton · 24 years ago
  96. 6f97e49 long_true_divide(): decref its converted arguments. test_long_future.py by Tim Peters · 24 years ago
  97. 67754e9 Rehabilitated the fast-path richcmp code, and sped it up. It wasn't by Tim Peters · 24 years ago
  98. c99213f No code change -- just trying to document the return conditions for all by Tim Peters · 24 years ago
  99. 4e8ab5d float_divmod(): the code wasn't sick enough to stop the MS optimizer by Tim Peters · 24 years ago
  100. d2e40d6 SF bug #477221: abs and divmod act oddly with -0.0 by Tim Peters · 24 years ago