1. 4eadfa2 Fix from Greg Chapman from SF bug #695651: a complex subclass by Guido van Rossum · 21 years ago
  2. 8049dde Removed duplicate test from inner loop. by Raymond Hettinger · 21 years ago
  3. d5a65a7 Fix SF bug #689659, 64-bit int and long hash keys incompatible by Neal Norwitz · 21 years ago
  4. 036f999 Implementing the salient parts of __reduce_ex__ in C. by Guido van Rossum · 21 years ago
  5. 850566b Strange control flow in PyInt_AsLong. When nb_int is called inside by Thomas Heller · 21 years ago
  6. 90195e2 PyObject_Generic{Get,Set}Attr: by Guido van Rossum · 21 years ago
  7. c53f009 Introducing __reduce_ex__, which is called with a protocol number argument by Guido van Rossum · 21 years ago
  8. 97e5ff5 Removed unreferenced label. by Tim Peters · 21 years ago
  9. 8e80a72 The recent changes to super(), in particular supercheck(), broke when by Guido van Rossum · 21 years ago
  10. 6b29c01 Make __module__ writable except in restricted mode (like for classic classes). by Guido van Rossum · 21 years ago
  11. ff71c98 Make __module__ settable on functions and methods. by Jeremy Hylton · 21 years ago
  12. fb50d3f default_3way_compare(): use PyNumber_Check(), rather than testing for by Guido van Rossum · 21 years ago
  13. 6921eca Make PyNumber_Check() a bit more careful, since all sorts of things by Guido van Rossum · 21 years ago
  14. 0732301 Add closing ) in comment by Neal Norwitz · 21 years ago
  15. 080c88b cPickle.c, load_build(): Taught cPickle how to pick apart by Tim Peters · 21 years ago
  16. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 21 years ago
  17. 4771065 Issue a warning when int('0...', 0) returns an int with the sign by Guido van Rossum · 21 years ago
  18. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 21 years ago
  19. e5b130b Add missing cast in previous fix. by Guido van Rossum · 21 years ago
  20. 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 21 years ago
  21. ec74f2f Add more missing PyErr_NoMemory() after failled memory allocs by Neal Norwitz · 21 years ago
  22. eea4718 Fix from SF #681367: inherit tp_as_buffer. This only applies to C by Guido van Rossum · 21 years ago
  23. b6e5a0c Put proper tests in classmethod_get(). Remove the type argument to by Guido van Rossum · 21 years ago
  24. 6bae46d Refactor instancemethod_descr_get() to (a) be more clear, (b) be safe by Guido van Rossum · 21 years ago
  25. 9af48ff Inline create_specialmethod() -- since METH_CLASS is done differently by Guido van Rossum · 21 years ago
  26. 82ed25c Add basic arg sanity checking to wrap_descr_get(). This is called by Guido van Rossum · 21 years ago
  27. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 21 years ago
  28. f6c9ba8 Fold long lines. by Guido van Rossum · 21 years ago
  29. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 21 years ago
  30. f6b56ae Fix two refcounting bugs by Walter Dörwald · 21 years ago
  31. cb3319f SF patch #683187, fix universal newline problems on error by Neal Norwitz · 21 years ago
  32. c9172d3 Comment typo fix by Andrew M. Kuchling · 21 years ago
  33. ce8bcd8 Fix for SF #668433. I'm not explaining it here; ample comments are in the code. by Guido van Rossum · 21 years ago
  34. bd5cbf8 Refactor the logic for setting f_builtins. by Jeremy Hylton · 21 years ago
  35. 18e7083 SF bug 681122: Built-in function dir() causes refcount leak in baseclasses. by Tim Peters · 21 years ago
  36. 004a65c _PyLong_Sign(): remove an assert that needed a variable ndigits that by Guido van Rossum · 21 years ago
  37. 1a3b19a long_from_binary_base(): Sped this a little by computing the # of bits by Tim Peters · 21 years ago
  38. efb9625 Tightened a too-generous assert. by Tim Peters · 21 years ago
  39. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 21 years ago
  40. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 21 years ago
  41. 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 21 years ago
  42. 08a1d9c Squash compiler wng about signed/unsigned comparison mismatch. by Tim Peters · 21 years ago
  43. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 21 years ago
  44. 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 21 years ago
  45. 5b8132f _PyLong_NumBits(): The definition of this was too specific to the quirky by Tim Peters · 21 years ago
  46. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 21 years ago
  47. baefd9e Added new private API function _PyLong_NumBits. This will be used at the by Tim Peters · 21 years ago
  48. abcb0c0 Fix SF bug# 676155, RuntimeWarning with tp_compare by Neal Norwitz · 21 years ago
  49. 4440f22 Recursive compare machinery: The code that intended to exempt tuples by Tim Peters · 21 years ago
  50. fa56e2d SF # 669553, fix memory (ref) leaks by Neal Norwitz · 21 years ago
  51. 5d5e7c0 SF patch #664192 bug #661913: inconsistent error messages between string by Raymond Hettinger · 22 years ago
  52. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 22 years ago
  53. adc7274 Fix charmapencode_lookup(), so that a None value in the mapping by Walter Dörwald · 22 years ago
  54. 034d976 Remove variable owned from PyUnicode_FromEncodedObject, which is unused by Walter Dörwald · 22 years ago
  55. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 22 years ago
  56. cd11880 Add a refinement to SLOT1BINFULL() that fixes the problem reported in by Guido van Rossum · 22 years ago
  57. 0a2f849 GvR's idea to use memset() for the most common special case of repeating by Raymond Hettinger · 22 years ago
  58. 698258a Optimize string_repeat. by Raymond Hettinger · 22 years ago
  59. 541ceec PyCFunction_Call(): Combined two switch cases w/ identical bodies. by Tim Peters · 22 years ago
  60. bf43f8a SF Patch #661440: Refactor and streamline PyCFunction_Call by Raymond Hettinger · 22 years ago
  61. 6f2bb23 Grammatical fix in comment. by Greg Ward · 22 years ago
  62. af6a27a Allow PyFile_GetLine() to return Unicode objects. Fixes #660165. by Martin v. Löwis · 22 years ago
  63. 4abd5f0 Allow list sort's comparison function to explicitly be None. See SF patch by Skip Montanaro · 22 years ago
  64. a3a243e Merge to trunk from release branch: by Guido van Rossum · 22 years ago
  65. 768158c Fix an out-of-bound index in pmerge() discovered by Zooko (SF bug by Guido van Rossum · 22 years ago
  66. b2501f4 Since the *_Init() are private, prefix with _, suggested by Skip by Neal Norwitz · 22 years ago
  67. c91ed40 SF #561244, Micro optimizations by Neal Norwitz · 22 years ago
  68. 0df2958 Consolidate the int and long sequence repeat code. Before the change, by Neil Schemenauer · 22 years ago
  69. d4b0fea Always try nb_* slots before trying sq_concat, sq_inplace_concat, sq_repeat, by Neil Schemenauer · 22 years ago
  70. 79f5783 Patch for bug #659709: bogus computation of float length by Marc-André Lemburg · 22 years ago
  71. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  72. f8bcfb1 SF Bug 645777: list.extend() works with any iterable and is no longer by Raymond Hettinger · 22 years ago
  73. ee65e22 Fix bug introduced by SF patch #643835, Set Next Statement for Python debuggers by Neal Norwitz · 22 years ago
  74. 91787cb Undefine MIN and MAX before defining by Neal Norwitz · 22 years ago
  75. 8feeabb SF # 654974, fix unchecked return values in structseq by Neal Norwitz · 22 years ago
  76. a080be8 * Objects/fileobject.c by Gustavo Niemeyer · 22 years ago
  77. cfd3884 This is Richie Hindle's patch by Michael W. Hudson · 22 years ago
  78. 786ddb2 Fixed bug by Gustavo Niemeyer · 22 years ago
  79. a828586 Punctuation fix. by Raymond Hettinger · 22 years ago
  80. 3bbc0ee Tighten the tests for assignment to __bases__: disallow empty tuple. by Guido van Rossum · 22 years ago
  81. 00b6127 Patch #650653: Raise always value error if the table is not 256 bytes long. by Martin v. Löwis · 22 years ago
  82. 7e5c6a0 Change issubclass() so that recursive tuples (directly or indirectly by Walter Dörwald · 22 years ago
  83. d9a6ad3 Enhance issubclass() and PyObject_IsSubclass() so that a tuple is by Walter Dörwald · 22 years ago
  84. 32b4a1b Constify char* API. Fixes #651363. 2.2 candidate. by Martin v. Löwis · 22 years ago
  85. 6233c9b Patch #650834: Document 'U' in file mode, remove stale variables. by Martin v. Löwis · 22 years ago
  86. d2bef82 Update comments about the performance of xrange(). by Raymond Hettinger · 22 years ago
  87. bca1cbc SF 548651: Fix the METH_CLASS implementation. by Tim Peters · 22 years ago
  88. ea7f75d slot_nb_nonzero(): Another leak uncovered by the sandbox datetime by Tim Peters · 22 years ago
  89. c2e095f Fix typo in abstract.c which caused __rpow__ to not be invoked. by Raymond Hettinger · 22 years ago
  90. e03e5b1 Remove assumption that cls is a subclass of dict. by Raymond Hettinger · 22 years ago
  91. 61ce0a9 slot_tp_hash(): In the normal path, this leaked a reference to the by Tim Peters · 22 years ago
  92. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
  93. a69c030 The final tweaks before closing by Michael W. Hudson · 22 years ago
  94. b02bb5e Replace BadInternalCall with TypeError. Add a test case. Fix whitespace. by Raymond Hettinger · 22 years ago
  95. ef786ae Add missing decref by Neal Norwitz · 22 years ago
  96. ade8c8b2 Nudge getting __module__ and __name__ for new-style classes so that by Michael W. Hudson · 22 years ago
  97. 7e7c00d I don't know why staring at the email to python-checkins made me by Michael W. Hudson · 22 years ago
  98. 586da8f Readjustments to the way we cope with exceptions from subclasses' by Michael W. Hudson · 22 years ago
  99. caf17be I had the inheritance cycle stuff backwards. Oops! by Michael W. Hudson · 22 years ago
  100. e33d3df SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class by Raymond Hettinger · 22 years ago