1. 56506a6 Use a better NaN test in _Py_HashDouble as well. by Mark Dickinson · 15 years ago
  2. 5e0c274 Use a more robust infinity check in _Py_HashDouble. by Mark Dickinson · 15 years ago
  3. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
  4. 4c6e808 #6707 fix a crash with dir() on an uninitialized module by Benjamin Peterson · 16 years ago
  5. d11f7fc Uninitialized file type would lead to __exit__ lookup failure when site.py by Antoine Pitrou · 16 years ago
  6. 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 16 years ago
  7. 3a9930d this is now a bound method by Benjamin Peterson · 16 years ago
  8. 399e4c4 add _PyObject_LookupSpecial to handle fetching special method lookup by Benjamin Peterson · 16 years ago
  9. 8cfa8e6 make errors consistent by Benjamin Peterson · 16 years ago
  10. 308c6ba initialize weakref some weakref types by Benjamin Peterson · 16 years ago
  11. 01c6e6f many more types to initialize (I had to expose some of them) by Benjamin Peterson · 16 years ago
  12. 5ce7375 initalize -> initialize by Benjamin Peterson · 16 years ago
  13. d4d400c try to initalize all builtin types with PyType_Ready to avoid problems like #5787 by Benjamin Peterson · 16 years ago
  14. d3eaa74 #5615: make it possible to configure --without-threads again. by Georg Brandl · 16 years ago
  15. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  16. 9e8a250 Fix compiler warning (gcc) by Antoine Pitrou · 16 years ago
  17. 76a4b89 Issue #5186: Reduce hash collisions for objects with no __hash__ method by by Antoine Pitrou · 16 years ago
  18. 10fe877 Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bit by Mark Dickinson · 16 years ago
  19. a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 17 years ago
  20. b90304a Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t. by Martin v. Löwis · 17 years ago
  21. 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 17 years ago
  22. 3538a31 #3632: the "pyo" macro from gdbinit can now run when the GIL is released. by Amaury Forgeot d'Arc · 17 years ago
  23. 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 17 years ago
  24. 524b777 Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing the instance dictionary when looking up __unicode__ on new-style classes by Nick Coghlan · 17 years ago
  25. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  26. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  27. 3497f94 First step of the C API rename: by Christian Heimes · 17 years ago
  28. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 17 years ago
  29. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
  30. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
  31. 07e5681 #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack Diederich. by Georg Brandl · 17 years ago
  32. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 17 years ago
  33. 37edeab Fix test67.py from issue #1303614. by Guido van Rossum · 18 years ago
  34. e4c270c Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) by Amaury Forgeot d'Arc · 18 years ago
  35. d1c131a Back out r59931 - test_ctypes fails with it. by Georg Brandl · 18 years ago
  36. 27e26ec Patch #1700288: Method cache optimization, by Armin Rigo, ported to by Georg Brandl · 18 years ago
  37. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  38. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 18 years ago
  39. 0b14f24 tuple.__repr__ did not consider a reference loop as it is not possible from by Brett Cannon · 18 years ago
  40. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 18 years ago
  41. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  42. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 18 years ago
  43. 26ca925 Remove warning: funcion declaration isn't a prototype by Jeremy Hylton · 18 years ago
  44. 3bb1567 Typo and grammar fixes. by Georg Brandl · 18 years ago
  45. 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
  46. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 19 years ago
  47. ccff785 Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c. by Georg Brandl · 19 years ago
  48. 2cfaa34 Correct some value converting strangenesses. by Georg Brandl · 19 years ago
  49. 2060d1b Comment typo fix by Andrew M. Kuchling · 19 years ago
  50. 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 19 years ago
  51. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 19 years ago
  52. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 19 years ago
  53. cbd6f18 _Py_PrintReferenceAddresses,_Py_PrintReferences: by Tim Peters · 19 years ago
  54. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  55. 262c00a Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 19 years ago
  56. 8af92d1 Heh -- used the right format for a refcount, but forgot to stop truncating it. by Tim Peters · 19 years ago
  57. 4d073bb _Py_NegativeRefcount(): print the full value of ob_refcnt. by Tim Peters · 19 years ago
  58. 7580146 Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and by Neal Norwitz · 19 years ago
  59. 3daf758 Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact by Georg Brandl · 19 years ago
  60. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  61. 84632ee Oops, forgot to include this in the last checkin. by Neal Norwitz · 19 years ago
  62. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 19 years ago
  63. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  64. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  65. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  66. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 20 years ago
  67. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago
  68. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 21 years ago
  69. a5ca2e7 Remove 'extern' declaration for _Py_SwappedOp. by Brett Cannon · 21 years ago
  70. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 21 years ago
  71. 1593f50 Move a comment back to its rightful location. by Michael W. Hudson · 21 years ago
  72. 2a7dede SF bug #1004669: Type returned from .keys() is not checked by Raymond Hettinger · 21 years ago
  73. 93468ea Remove unused macros in .c files by Neal Norwitz · 21 years ago
  74. 0a4dd39 Make weak references subclassable: by Fred Drake · 21 years ago
  75. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 21 years ago
  76. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 21 years ago
  77. 8183fa4 Fix typo in comment. by Raymond Hettinger · 21 years ago
  78. 93d4481 Add identity shortcut to PyObject_RichCompareBool. by Raymond Hettinger · 21 years ago
  79. fb5a4e3 Removed two unneeded lines from PyObject_Compare(). by Brett Cannon · 22 years ago
  80. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 22 years ago
  81. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 22 years ago
  82. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 22 years ago
  83. b2c7de4 Fix for by Michael W. Hudson · 22 years ago
  84. 21d7d4d _Py_PrintReferenceAddresses(): also print the type name. In real use by Tim Peters · 22 years ago
  85. 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 22 years ago
  86. 0fc8f00 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() by Guido van Rossum · 22 years ago
  87. 51f8d38 Typo in comment. by Tim Peters · 22 years ago
  88. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 22 years ago
  89. 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 22 years ago
  90. 3e40c7f Oops! Used a wrong preprocessor symbol. by Tim Peters · 22 years ago
  91. 78be799 When Py_TRACE_REFS is defined, a list of all live objects is maintained in by Tim Peters · 22 years ago
  92. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 22 years ago
  93. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 22 years ago
  94. 90195e2 PyObject_Generic{Get,Set}Attr: by Guido van Rossum · 22 years ago
  95. fb50d3f default_3way_compare(): use PyNumber_Check(), rather than testing for by Guido van Rossum · 22 years ago
  96. 18e7083 SF bug 681122: Built-in function dir() causes refcount leak in baseclasses. by Tim Peters · 23 years ago
  97. 4440f22 Recursive compare machinery: The code that intended to exempt tuples by Tim Peters · 23 years ago
  98. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 23 years ago
  99. 89350a4 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes by Neil Schemenauer · 23 years ago
  100. 6e08c14 PyObject_Init[Var] is almost always called from the PyObject_NEW[_VAR] by Guido van Rossum · 23 years ago