1. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  2. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  3. 2aa2b3b Clean up a few tabs that went in with PEP393. by Ezio Melotti · 13 years ago
  4. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  5. 01fc6cd make __doc__ mutable on heaptypes (closes #12773) by Benjamin Peterson · 13 years ago
  6. d9f23d2 factor out common checks for setting special type attributes by Benjamin Peterson · 13 years ago
  7. d17cefc crush other possible refleaks in this section by Benjamin Peterson · 13 years ago
  8. 3e6267e merge 3.2 by Benjamin Peterson · 13 years ago
  9. ae13c88 fix possible refleaks by Benjamin Peterson · 13 years ago
  10. c4085c8 complain when a class variable shadows a name in __slots__ (closes #12766) by Benjamin Peterson · 13 years ago
  11. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  12. 9b43b6e Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago
  13. ff35050 Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago
  14. 8cdc40e Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago
  15. 093c8e4 Issue #12149: Update the method cache after a type's dictionnary gets by Antoine Pitrou · 13 years ago
  16. 84f1b17 Issue #12149: Update the method cache after a type's dictionnary gets by Antoine Pitrou · 13 years ago
  17. f5ff223 use a invalid name for the __class__ closure for super() (closes #12370) by Benjamin Peterson · 13 years ago
  18. c728412 indicate return value on __dir__ methods by Benjamin Peterson · 13 years ago
  19. 1fdcf0e merge 3.2 by Benjamin Peterson · 13 years ago
  20. 17658a1 merge 3.1 by Benjamin Peterson · 13 years ago
  21. fbe56bb use '->' to indicate return values by Benjamin Peterson · 13 years ago
  22. 82b00c1 move specialized dir implementations into __dir__ methods (closes #12166) by Benjamin Peterson · 13 years ago
  23. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  24. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  25. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  26. b9cd353 Issue 9856: Change object.__format__ with a non-empty format string from a PendingDeprecationWarning to a DeprecationWarning. by Eric V. Smith · 13 years ago
  27. 16c4ce1 Issue #9935: Speed up pickling of instances of user-defined classes. by Antoine Pitrou · 13 years ago
  28. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  29. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  30. 7be5b78 Merged revisions 88456 via svnmerge from by Martin v. Löwis · 13 years ago
  31. 5e06a5d - Check for NULL result in PyType_FromSpec. by Martin v. Löwis · 13 years ago
  32. 032400b #11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to a static string literal which should not be deallocated together with the type. by Georg Brandl · 13 years ago
  33. 738236d Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check in the limited ABI by Martin v. Löwis · 13 years ago
  34. 32a8fe8 Merged revisions 88069 via svnmerge from by Benjamin Peterson · 14 years ago
  35. 37b9e46 remove unneeded assertion by Benjamin Peterson · 14 years ago
  36. d82f45b Merged revisions 88066 via svnmerge from by Benjamin Peterson · 14 years ago
  37. 0dd5ca0 correct assertion by Benjamin Peterson · 14 years ago
  38. acd1759 Merged revisions 88063 via svnmerge from by Benjamin Peterson · 14 years ago
  39. 67641d2 turn some checks into assertions, since they are implied by the caller by Benjamin Peterson · 14 years ago
  40. a53d2ac Merged revisions 87960 via svnmerge from by Benjamin Peterson · 14 years ago
  41. 23b628e use PyErr_SetString instead of PyErr_Format by Benjamin Peterson · 14 years ago
  42. de36871 Merged revisions 87952-87954 via svnmerge from by Benjamin Peterson · 14 years ago
  43. 477ba91 don't segfault on deleting __abstractmethods__ #10892 by Benjamin Peterson · 14 years ago
  44. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  45. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  46. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  47. ff150f2 Revert r85797 (and r85798): it broke the Windows buildbots because of by Antoine Pitrou · 14 years ago
  48. 7eecffd Issue #9935: Speed up pickling of instances of user-defined classes. by Antoine Pitrou · 14 years ago
  49. e7dfeeb -1 is reserved for errors by Benjamin Peterson · 14 years ago
  50. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  51. 866c74e Merged revisions 85193 via svnmerge from by Benjamin Peterson · 14 years ago
  52. 84060b8 typo by Benjamin Peterson · 14 years ago
  53. 0ad44fa Merged revisions 85154,85182 via svnmerge from by Benjamin Peterson · 14 years ago
  54. aec5fd1 type.__abstractmethods__ should raise an AttributeError #10006 by Benjamin Peterson · 14 years ago
  55. a67c70d Merged revisions 84984 via svnmerge from by Mark Dickinson · 14 years ago
  56. b09a3d6 Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r; by Mark Dickinson · 14 years ago
  57. e4d6317 Issue 7994: Make object.__format__() raise a PendingDeprecationWarning by Eric Smith · 14 years ago
  58. 039d0a0 Merged revisions 84320 via svnmerge from by Benjamin Peterson · 14 years ago
  59. 0e10206 basicsize and itemsize are Py_ssize_t #9688 by Benjamin Peterson · 14 years ago
  60. 102594f Merged revisions 84106 via svnmerge from by Alexander Belopolsky · 14 years ago
  61. 977a684 Issue #8983: Corrected docstrings. by Alexander Belopolsky · 14 years ago
  62. 4a2b7a1 Issue #9425: Create PyErr_WarnFormat() function by Victor Stinner · 14 years ago
  63. 20f9c3c revert unintended changes by Benjamin Peterson · 14 years ago
  64. 013783c move test_trace.py so as not to conflict with future tests for the trace module by Benjamin Peterson · 14 years ago
  65. a7465e2 cleanup basicsize logic #3268 by Benjamin Peterson · 14 years ago
  66. c03d757 Merged revisions 81709-81710 via svnmerge from by Benjamin Peterson · 14 years ago
  67. dc787d2 Issue #8188: Introduce a new scheme for computing hashes of numbers by Mark Dickinson · 14 years ago
  68. ba644a6 Ooops, add missing ";" in my previous commit (r81324, typeobject.c) by Victor Stinner · 14 years ago
  69. e5f99f3 Issue #6697: Check that _PyUnicode_AsString() result is not NULL in typeobject by Victor Stinner · 14 years ago
  70. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  71. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  72. 38c36f8 Merged revisions 78875 via svnmerge from by Victor Stinner · 14 years ago
  73. 3f1af5c Issue #6697: use %U format instead of _PyUnicode_AsString(), because by Victor Stinner · 14 years ago
  74. 6f1d049 Issue #6970: Remove redundant calls made when comparing objects. by Mark Dickinson · 15 years ago
  75. 2db046d Issue #6151: Make PyDescr_COMMON conform to standard C. by Alexandre Vassalotti · 15 years ago
  76. 79fa5ab Merged revisions 73868 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  77. 097cd07 #6428: py3k requires that __bool__ return a bool (and not an int) by Amaury Forgeot d'Arc · 15 years ago
  78. 394996b Issue #5373: Remove restriction on null bytes in docstrings of classes. by Alexandre Vassalotti · 15 years ago
  79. 88fe5f9 Merged revisions 72690 via svnmerge from by Benjamin Peterson · 15 years ago
  80. 224205f Merged revisions 72461 via svnmerge from by Benjamin Peterson · 15 years ago
  81. 193152c Merged revisions 71860 via svnmerge from by Benjamin Peterson · 15 years ago
  82. f07d002 Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-70406,70418,70438,70464,70468 via svnmerge from by Benjamin Peterson · 15 years ago
  83. ee1ae7c fix len() when __len__() returns a non number type #5137 by Benjamin Peterson · 15 years ago
  84. 2a7d45b Issue #1717: add a DeprecationWarning in 3.x on type initialization by Mark Dickinson · 15 years ago
  85. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  86. 995d4cd Remove exception for non-NULL tp_compare that was introduced in r69188. by Mark Dickinson · 16 years ago
  87. c008a17 Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarations by Mark Dickinson · 16 years ago
  88. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 16 years ago
  89. b547979 Merged revisions 68568,68665 via svnmerge from by Benjamin Peterson · 16 years ago
  90. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
  91. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  92. d746768 Issue #4910: replace "long" with "int" in docstring for __long__ slot and by Mark Dickinson · 16 years ago
  93. 91cc8fb Fix for bug 4360 "SystemError when method has both super() & closure". Patch by Barry Warsaw · 16 years ago
  94. 9262b84 Merged revisions 67246 via svnmerge from by Benjamin Peterson · 16 years ago
  95. 6019208 remove some more references to __cmp__ #1717 by Benjamin Peterson · 16 years ago
  96. ec569b7 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  97. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  98. d1abd25 Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash level indicator that the default hash implementation has not been inherited by Nick Coghlan · 16 years ago
  99. f08a9dd Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from by Georg Brandl · 16 years ago
  100. 00709aa Merged revisions 63856-63857,63859-63860 via svnmerge from by Martin v. Löwis · 16 years ago