1. 4c05d3b Make built-in methods picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  2. a4b7a75 Issue #3158: doctest can now find doctests in functions and methods by Zachary Ware · 11 years ago
  3. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  4. ebdcb50 Issue #19730: Argument Clinic now supports all the existing PyArg by Larry Hastings · 11 years ago
  5. 2489bd8 Issue #17810: Fixed NULL check in _PyObject_GetItemsIter() by Christian Heimes · 11 years ago
  6. c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
  7. b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
  8. c72e4e6 Issue #19619: Blacklist non-text codecs in method API by Nick Coghlan · 11 years ago
  9. 8455723 Close #19568: Fix bytearray_setslice_linear(), fix handling of by Victor Stinner · 11 years ago
  10. 35f2803 Close #19578: Fix list_ass_subscript(), handle list_resize() failure by Victor Stinner · 11 years ago
  11. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  12. dc2fd51 Remove dead code committed in issue #12892. by Serhiy Storchaka · 11 years ago
  13. f1de55f Also chain codec exceptions that allow weakrefs by Nick Coghlan · 11 years ago
  14. f91929b Issue #19646: repr(dict) now uses _PyUnicodeWriter API for better performances by Victor Stinner · 11 years ago
  15. 88a9cd9 Issue #19513: repr(tuple) now uses _PyUnicodeWriter for better performances by Victor Stinner · 11 years ago
  16. 4a58707 Add _PyUnicodeWriter_WriteASCIIString() function by Victor Stinner · 11 years ago
  17. 4d3f109 Issue #19513: Disable overallocation of the PyUnicodeWriter before the last write by Victor Stinner · 11 years ago
  18. 58cf607 Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates. by Serhiy Storchaka · 11 years ago
  19. b8fb197 Issue #19513: Simplify list_repr() by Victor Stinner · 11 years ago
  20. 5c73347 Issue #19513: repr(list) now uses the PyUnicodeWriter API, it is faster than by Victor Stinner · 11 years ago
  21. 6989ba0 Issue #19581: Change the overallocation factor of _PyUnicodeWriter on Windows by Victor Stinner · 11 years ago
  22. ed4a1c5 Argument Clinic: rename "self" to "module" for module-level functions. by Larry Hastings · 11 years ago
  23. 745d54d #17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs(). by Ezio Melotti · 11 years ago
  24. 4b9b936 Don't decref exc too soon by Nick Coghlan · 11 years ago
  25. 46ef319 Issue #19429, #19437: fix error handling in the OSError constructor by Victor Stinner · 11 years ago
  26. e109ee8 fix refleaks by Benjamin Peterson · 11 years ago
  27. 079c998 adjust style by Benjamin Peterson · 11 years ago
  28. 6a3db25 Issue #17828: _PyObject_GetDictPtr() may return NULL instead of a PyObject** by Christian Heimes · 11 years ago
  29. 507eabd Issue #17828: va_start() must be accompanied by va_end() by Christian Heimes · 11 years ago
  30. 8b097b4 Close #17828: better handling of codec errors by Nick Coghlan · 11 years ago
  31. 59799a8 Don't use deprecated function PyUnicode_GET_SIZE() by Victor Stinner · 11 years ago
  32. 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
  33. 66b3270 _Py_normalize_encoding(): explain how the value 6 was computed by Victor Stinner · 11 years ago
  34. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  35. 07e9e38 frameobject.c: Use an identifer instead of creating explicitly an interned by Victor Stinner · 11 years ago
  36. df23e30 Fix _Py_normalize_encoding(): ensure that buffer is big enough to store "utf-8" by Victor Stinner · 11 years ago
  37. e75fc14 Issue #19514: Deduplicate some _Py_IDENTIFIER declarations. by Martin v. Löwis · 11 years ago
  38. a5b9599 #17080: improve error message of float/complex when the wrong type is passed. by Ezio Melotti · 11 years ago
  39. 53e9ec4 Issue #19512: Use the new _PyId_builtins identifier by Victor Stinner · 11 years ago
  40. ad14ccd Issue #19512: add _PyUnicode_CompareWithId() function by Victor Stinner · 11 years ago
  41. 3688aa9 Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use an by Victor Stinner · 11 years ago
  42. 5fd2e5a Issue #19512: Add a new _PyDict_DelItemId() function, similar to by Victor Stinner · 11 years ago
  43. 7a07e45 Issue #19512: Py_ReprEnter() and Py_ReprLeave() now use an identifier for the by Victor Stinner · 11 years ago
  44. 21ea21e Issue #19424: PyUnicode_CompareWithASCIIString() normalizes memcmp() result by Victor Stinner · 11 years ago
  45. f0c7b2a Issue #16286: remove duplicated identity check from unicode_compare() by Victor Stinner · 11 years ago
  46. fd9e44d Issue #16286: optimize PyUnicode_RichCompare() for identical strings (same by Victor Stinner · 11 years ago
  47. c8bc537 Issue #16286: write a new subfunction bytes_compare_eq() by Victor Stinner · 11 years ago
  48. e1b1592 Issue #19424: Fix a compiler warning on comparing signed/unsigned size_t by Victor Stinner · 11 years ago
  49. a6b9b07 Issue #19424: Fix a compiler warning by Victor Stinner · 11 years ago
  50. 602f7cf Issue #19424: Optimize PyUnicode_CompareWithASCIIString() by Victor Stinner · 11 years ago
  51. 84745ab Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses of a given type. by Antoine Pitrou · 11 years ago
  52. 68b674c Issue #19437: Fix _PyUnicode_New() (constructor of legacy string), set all by Victor Stinner · 11 years ago
  53. 0b0c867 Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() and by Victor Stinner · 11 years ago
  54. fa3ba4c Issue #18609: Add a fast-path for "iso8859-1" encoding by Victor Stinner · 11 years ago
  55. bebba50 fix indent by Victor Stinner · 11 years ago
  56. cc64eb5 Issue #18408: Fix bytearrayiter.partition()/rpartition(), handle by Victor Stinner · 11 years ago
  57. 986e224 Issue #18408: Fix error handling in PyBytes_FromObject() by Victor Stinner · 11 years ago
  58. a5afb58 Issue #18408: Fix PyUnicode_AsUTF8AndSize(), raise MemoryError exception on by Victor Stinner · 11 years ago
  59. 41bb43a Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle by Victor Stinner · 11 years ago
  60. f740d46 Issue #19369: Optimized the usage of __length_hint__(). by Serhiy Storchaka · 11 years ago
  61. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  62. 55e092f Issue #19279: UTF-7 decoder no more produces illegal strings. by Serhiy Storchaka · 11 years ago
  63. 35804e4 Issue #19279: UTF-7 decoder no more produces illegal strings. by Serhiy Storchaka · 11 years ago
  64. 3182680 Issue #16612: Add "Argument Clinic", a compile-time preprocessor by Larry Hastings · 11 years ago
  65. 94d08d9 upgrade unicode db to 6.3.0 (closes #19221) by Benjamin Peterson · 11 years ago
  66. 6cf185d Issue #18874: _PyObject_Malloc/Realloc/Free() now falls back on by Victor Stinner · 11 years ago
  67. 7c74de4 Issue #18874: PyCode_New() now ensures that the filename is a ready Unicode by Victor Stinner · 11 years ago
  68. 9259c21 Issue #19171: speed some cases of 3-argument long pow(). by Tim Peters · 11 years ago
  69. 81a9315 Issue #19171: speed some cases of 3-argument long pow(). by Tim Peters · 11 years ago
  70. e898153 #19069: merge with 3.3. by Ezio Melotti · 11 years ago
  71. 7760b4e #19069: use imperative mood in float object docstrings. Patch by Marco Buttu. by Ezio Melotti · 11 years ago
  72. c1ae254 #19068: merge with 3.3. by Ezio Melotti · 11 years ago
  73. 488d244 #19068: use imperative mood in complex object docstrings. Patch by Marco Buttu. by Ezio Melotti · 11 years ago
  74. b32a811 #19067: merge with 3.3. by Ezio Melotti · 11 years ago
  75. 5792ce1 #19067: use imperative mood in range object docstrings. Patch by Marco Buttu. by Ezio Melotti · 11 years ago
  76. 5b72075 Hopefully fix Windows compilation error following 499a96611baa by Antoine Pitrou · 11 years ago
  77. 5df8a8a Issue #19087: Improve bytearray allocation in order to allow cheap popping of data at the front (slice deletion). by Antoine Pitrou · 11 years ago
  78. 0e61ed8 Issue #19014: memoryview.cast() is now allowed on zero-length views. by Antoine Pitrou · 11 years ago
  79. 60b1834 Issue #19014: memoryview.cast() is now allowed on zero-length views. by Antoine Pitrou · 11 years ago
  80. a0f169c Close #19078: memoryview now supports reversed by Nick Coghlan · 11 years ago
  81. c13516b merge by Raymond Hettinger · 11 years ago
  82. 2ff2190 Issue #18594: Fix the fast path for collections.Counter(). by Raymond Hettinger · 11 years ago
  83. 6ba64f4 Close #18596: Support address sanity checking in clang/GCC by Nick Coghlan · 11 years ago
  84. 7cba5fd Fix minor typo. by Georg Brandl · 11 years ago
  85. 710a67e Note that LINEAR_PROBES can be set to zero. by Raymond Hettinger · 11 years ago
  86. 4ef0528 Minor beautification. Put updates and declarations in a more logical order. by Raymond Hettinger · 11 years ago
  87. 0ce1953 When LINEAR_PROBES=0, let the compiler remove the dead code on its own. by Raymond Hettinger · 11 years ago
  88. c70a2b7 Make the linear probe sequence clearer. by Raymond Hettinger · 11 years ago
  89. df099f5 Update internal comments to say _something_ about the "API ID". by Tim Peters · 11 years ago
  90. 8408dc5 Issue 18771: Make it possible to set the number linear probes at compile-time. by Raymond Hettinger · 11 years ago
  91. 742d871 Put the defines in the logical section and fix indentation. by Raymond Hettinger · 11 years ago
  92. 583cd03 Minor code beautification. by Raymond Hettinger · 11 years ago
  93. 4ea9080 Improve code clarity by removing two unattractive macros. by Raymond Hettinger · 11 years ago
  94. 8f8839e Remove the freelist scheme for setobjects. by Raymond Hettinger · 11 years ago
  95. 04fd9dd Small rearrangement to bring together the three functions for probing the hash table. by Raymond Hettinger · 11 years ago
  96. ae7b00e Move the overview comment to the top of the file. by Raymond Hettinger · 11 years ago
  97. b237295 Nerge 3.3 into default. by Tim Peters · 11 years ago
  98. eaa3bcc Issue #18942: sys._debugmallocstats() output was damaged on Windows. by Tim Peters · 11 years ago
  99. c56e0e3 Minor touchups. by Raymond Hettinger · 11 years ago
  100. 69492da Factor-out the common code for setting a KeyError. by Raymond Hettinger · 11 years ago