1. 21d7d4d _Py_PrintReferenceAddresses(): also print the type name. In real use by Tim Peters · 21 years ago
  2. 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 21 years ago
  3. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago
  4. c1f6e8c - The repr() of a weakref object now shows the __name__ attribute of by Guido van Rossum · 21 years ago
  5. 6cc5bb6 Sigh. The crucial change was still missing from the previous checkin. :-( by Guido van Rossum · 21 years ago
  6. 76ba09f - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 21 years ago
  7. 19a02ba Fix three (!) object leaks in the code for assignment to __bases__. by Guido van Rossum · 21 years ago
  8. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 21 years ago
  9. 0fc8f00 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() by Guido van Rossum · 21 years ago
  10. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 21 years ago
  11. 2fd02eb super_getattro(): kill some dead code; explain a mystery. by Guido van Rossum · 21 years ago
  12. 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 21 years ago
  13. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 21 years ago
  14. d06483c Missing DECREF. by Jeremy Hylton · 21 years ago
  15. 2fb9fdc Make it possible to call instancemethod() with 2 arguments. by Guido van Rossum · 21 years ago
  16. a713218 Reformat a few docstrings that caused line wraps in help() output. by Guido van Rossum · 21 years ago
  17. 00bf828 property_traverse() should also traverse into prop_doc -- there's no by Guido van Rossum · 21 years ago
  18. 400d8ee Make staticmethods and classmethods participate in GC. by Jeremy Hylton · 21 years ago
  19. df875b9 New private API function _PyInstance_Lookup. gc will use this to figure by Tim Peters · 21 years ago
  20. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  21. 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 21 years ago
  22. 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 21 years ago
  23. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  24. 8d24ee9 Refactoring: rename update_these_slots() into update_subclasses() and by Guido van Rossum · 21 years ago
  25. 51f8d38 Typo in comment. by Tim Peters · 21 years ago
  26. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 21 years ago
  27. bf9b244 slot_sq_contains(): This leaked a reference to the result of calling by Tim Peters · 21 years ago
  28. 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 21 years ago
  29. 3e40c7f Oops! Used a wrong preprocessor symbol. by Tim Peters · 21 years ago
  30. 78be799 When Py_TRACE_REFS is defined, a list of all live objects is maintained in by Tim Peters · 21 years ago
  31. f1ed934 _PyFloat_Pack4(): Removed needless call of floor(). by Tim Peters · 21 years ago
  32. 9905b94 New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a by Tim Peters · 21 years ago
  33. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  34. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  35. 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  36. c8df578 Sf patch #700047: unicode object leaks refcount on resizing by Raymond Hettinger · 21 years ago
  37. e5c691a - The extended type structure used for heap types (new-style by Guido van Rossum · 21 years ago
  38. a3e1e4c SF patch #693753: fix for bug 639806: default for dict.pop by Raymond Hettinger · 21 years ago
  39. 4eadfa2 Fix from Greg Chapman from SF bug #695651: a complex subclass by Guido van Rossum · 22 years ago
  40. 8049dde Removed duplicate test from inner loop. by Raymond Hettinger · 22 years ago
  41. d5a65a7 Fix SF bug #689659, 64-bit int and long hash keys incompatible by Neal Norwitz · 22 years ago
  42. 036f999 Implementing the salient parts of __reduce_ex__ in C. by Guido van Rossum · 22 years ago
  43. 850566b Strange control flow in PyInt_AsLong. When nb_int is called inside by Thomas Heller · 22 years ago
  44. 90195e2 PyObject_Generic{Get,Set}Attr: by Guido van Rossum · 22 years ago
  45. c53f009 Introducing __reduce_ex__, which is called with a protocol number argument by Guido van Rossum · 22 years ago
  46. 97e5ff5 Removed unreferenced label. by Tim Peters · 22 years ago
  47. 8e80a72 The recent changes to super(), in particular supercheck(), broke when by Guido van Rossum · 22 years ago
  48. 6b29c01 Make __module__ writable except in restricted mode (like for classic classes). by Guido van Rossum · 22 years ago
  49. ff71c98 Make __module__ settable on functions and methods. by Jeremy Hylton · 22 years ago
  50. fb50d3f default_3way_compare(): use PyNumber_Check(), rather than testing for by Guido van Rossum · 22 years ago
  51. 6921eca Make PyNumber_Check() a bit more careful, since all sorts of things by Guido van Rossum · 22 years ago
  52. 0732301 Add closing ) in comment by Neal Norwitz · 22 years ago
  53. 080c88b cPickle.c, load_build(): Taught cPickle how to pick apart by Tim Peters · 22 years ago
  54. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 22 years ago
  55. 4771065 Issue a warning when int('0...', 0) returns an int with the sign by Guido van Rossum · 22 years ago
  56. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 22 years ago
  57. e5b130b Add missing cast in previous fix. by Guido van Rossum · 22 years ago
  58. 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 22 years ago
  59. ec74f2f Add more missing PyErr_NoMemory() after failled memory allocs by Neal Norwitz · 22 years ago
  60. eea4718 Fix from SF #681367: inherit tp_as_buffer. This only applies to C by Guido van Rossum · 22 years ago
  61. b6e5a0c Put proper tests in classmethod_get(). Remove the type argument to by Guido van Rossum · 22 years ago
  62. 6bae46d Refactor instancemethod_descr_get() to (a) be more clear, (b) be safe by Guido van Rossum · 22 years ago
  63. 9af48ff Inline create_specialmethod() -- since METH_CLASS is done differently by Guido van Rossum · 22 years ago
  64. 82ed25c Add basic arg sanity checking to wrap_descr_get(). This is called by Guido van Rossum · 22 years ago
  65. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 22 years ago
  66. f6c9ba8 Fold long lines. by Guido van Rossum · 22 years ago
  67. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 22 years ago
  68. f6b56ae Fix two refcounting bugs by Walter Dörwald · 22 years ago
  69. cb3319f SF patch #683187, fix universal newline problems on error by Neal Norwitz · 22 years ago
  70. c9172d3 Comment typo fix by Andrew M. Kuchling · 22 years ago
  71. ce8bcd8 Fix for SF #668433. I'm not explaining it here; ample comments are in the code. by Guido van Rossum · 22 years ago
  72. bd5cbf8 Refactor the logic for setting f_builtins. by Jeremy Hylton · 22 years ago
  73. 18e7083 SF bug 681122: Built-in function dir() causes refcount leak in baseclasses. by Tim Peters · 22 years ago
  74. 004a65c _PyLong_Sign(): remove an assert that needed a variable ndigits that by Guido van Rossum · 22 years ago
  75. 1a3b19a long_from_binary_base(): Sped this a little by computing the # of bits by Tim Peters · 22 years ago
  76. efb9625 Tightened a too-generous assert. by Tim Peters · 22 years ago
  77. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 22 years ago
  78. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 22 years ago
  79. 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 22 years ago
  80. 08a1d9c Squash compiler wng about signed/unsigned comparison mismatch. by Tim Peters · 22 years ago
  81. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 22 years ago
  82. 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 22 years ago
  83. 5b8132f _PyLong_NumBits(): The definition of this was too specific to the quirky by Tim Peters · 22 years ago
  84. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
  85. baefd9e Added new private API function _PyLong_NumBits. This will be used at the by Tim Peters · 22 years ago
  86. abcb0c0 Fix SF bug# 676155, RuntimeWarning with tp_compare by Neal Norwitz · 22 years ago
  87. 4440f22 Recursive compare machinery: The code that intended to exempt tuples by Tim Peters · 22 years ago
  88. fa56e2d SF # 669553, fix memory (ref) leaks by Neal Norwitz · 22 years ago
  89. 5d5e7c0 SF patch #664192 bug #661913: inconsistent error messages between string by Raymond Hettinger · 22 years ago
  90. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 22 years ago
  91. adc7274 Fix charmapencode_lookup(), so that a None value in the mapping by Walter Dörwald · 22 years ago
  92. 034d976 Remove variable owned from PyUnicode_FromEncodedObject, which is unused by Walter Dörwald · 22 years ago
  93. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 22 years ago
  94. cd11880 Add a refinement to SLOT1BINFULL() that fixes the problem reported in by Guido van Rossum · 22 years ago
  95. 0a2f849 GvR's idea to use memset() for the most common special case of repeating by Raymond Hettinger · 22 years ago
  96. 698258a Optimize string_repeat. by Raymond Hettinger · 22 years ago
  97. 541ceec PyCFunction_Call(): Combined two switch cases w/ identical bodies. by Tim Peters · 22 years ago
  98. bf43f8a SF Patch #661440: Refactor and streamline PyCFunction_Call by Raymond Hettinger · 22 years ago
  99. 6f2bb23 Grammatical fix in comment. by Greg Ward · 22 years ago
  100. af6a27a Allow PyFile_GetLine() to return Unicode objects. Fixes #660165. by Martin v. Löwis · 22 years ago