1. 33283ba Issue #18408: Fix CJK decoders, raise MemoryError on memory allocation failure by Victor Stinner · 11 years ago
  2. 54b2d2e Issue #18408: Fix pyexpat.ParserCreate() by Victor Stinner · 11 years ago
  3. 0fedb37 Issue #18393: Remove use of deprecated API on OSX by Ronald Oussoren · 11 years ago
  4. 9ba6962 Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
  5. 9ad51ec Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
  6. 90dea4c Tweak the deque struct by moving the least used fields (maxlen and weakref) to the end. by Raymond Hettinger · 11 years ago
  7. 840533b Use a do-while loop in the inner loop for rotate (m is always greater than zero). by Raymond Hettinger · 11 years ago
  8. 3959af9 Move the freeblock() call outside the main loop to speed-up and simplify the block re-use logic. by Raymond Hettinger · 11 years ago
  9. d917dcb Issue #18408: Fix constructors of _elementtree.c by Victor Stinner · 11 years ago
  10. 81aac73 Issue #18408: Fix create_extra() of _elementtree.c, raise MemoryError on memory by Victor Stinner · 11 years ago
  11. df4572c Issue #18408: parser module: fix error handling in node2tuple() by Victor Stinner · 11 years ago
  12. 3bd6abd Issue #18408: Fix parser.sequence2st() and parser.tuple2st(): raise MemoryError by Victor Stinner · 11 years ago
  13. 4202456 Issue #18408: _pickle.c: Add missing PyErr_NoMemory() on memory allocation failures by Victor Stinner · 11 years ago
  14. 8ca72e2 Issue #18408: _PyMemoTable_ResizeTable() now restores the old table if by Victor Stinner · 11 years ago
  15. c31df04 Issue #18408: Oh, I was wrong: Pickler_New() must call Py_DECREF() to destroy by Victor Stinner · 11 years ago
  16. 71c8b7e Issue #18408: Different fixes in _elementtree.c to handle correctly MemoryError by Victor Stinner · 11 years ago
  17. 4d46343 Cleanup _elementtree.c by Victor Stinner · 11 years ago
  18. 5f0af23 Issue #18408: _elementtree.c now handles create_extra() failure by Victor Stinner · 11 years ago
  19. 68c8ea2 Issue #18408: Fix _Pickler_New() and _Unpickler_New(): initialize all by Victor Stinner · 11 years ago
  20. 50ae3f6 Issue #18101: Tcl.split() now process strings nested in a tuple as it by Serhiy Storchaka · 11 years ago
  21. 275d5fd Issue #18101: Tcl.split() now process strings nested in a tuple as it by Serhiy Storchaka · 11 years ago
  22. e3ed4ed Issue #18338: `python --version` now prints version string to stdout, and by Serhiy Storchaka · 11 years ago
  23. 609142e Merge: #18399: fix comment typo. by R David Murray · 11 years ago
  24. 296b73c #18399: fix comment typo. by R David Murray · 11 years ago
  25. d9c116c Add a spacing saving heuristic to deque's extend methods by Raymond Hettinger · 11 years ago
  26. bbf8ce5 Issue #18408: Fix select.select() to handle PyList_New() failure (MemoryError) by Victor Stinner · 11 years ago
  27. 7979926 Issue #18408: Fix usage of _PyBytes_Resize() by Victor Stinner · 11 years ago
  28. bf2e2f9 Issue #18408: Fix zlib.compressobj() to handle PyThread_allocate_lock() failure by Victor Stinner · 11 years ago
  29. 3f15cf0 Issue #18408: Fix ConvParam() of the ctypes module to handle paramfunc failure by Victor Stinner · 11 years ago
  30. 064bbdc fix indentation by Victor Stinner · 11 years ago
  31. 5d1866c Issue #18408: PyObject_GC_NewVar() now raises SystemError exception if nitems by Victor Stinner · 11 years ago
  32. c1eb26c gcmodule.c: strip trailing spaces by Victor Stinner · 11 years ago
  33. 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
  34. fa535f5 Issue #18227: pyexpat now uses a static XML_Memory_Handling_Suite. cElementTree uses the same approach since at least Python 2.6 by Christian Heimes · 11 years ago
  35. b7f1f65 Issue #18227: "Free" function of bz2, lzma and zlib modules has no return value (void) by Victor Stinner · 11 years ago
  36. 11ebff2 Issue #18203: Replace malloc() with PyMem_Malloc() in _ssl for the password by Victor Stinner · 11 years ago
  37. 5064a52 Issue #18227: Use PyMem_RawAlloc() in bz2, lzma and zlib modules by Victor Stinner · 11 years ago
  38. 6ce0dbf Fix a compiler warning in posix_sendfile() on FreeBSD: by Victor Stinner · 11 years ago
  39. b640491 Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules by Victor Stinner · 11 years ago
  40. 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
  41. b385529 Fix #ifdef by Raymond Hettinger · 11 years ago
  42. 82df925 Use macros for marking and checking endpoints in the doubly-linked list of blocks. by Raymond Hettinger · 11 years ago
  43. ef9b47f merge by Raymond Hettinger · 11 years ago
  44. f3a67b7 Improve variable names in deque_count() by Raymond Hettinger · 11 years ago
  45. 0507bf5 Issue #3329: Implement the PEP 445 by Victor Stinner · 11 years ago
  46. df715ba Apply the PyObject_VAR_HEAD and Py_SIZE macros by Raymond Hettinger · 11 years ago
  47. 5bfa867 Refactor deque_traverse(). by Raymond Hettinger · 11 years ago
  48. 98054b4 Remove unnecessary branches from count() and reverse(). by Raymond Hettinger · 11 years ago
  49. de68e0c Speed-up deque indexing by changing the deque block length to a power of two. by Raymond Hettinger · 11 years ago
  50. 0857ab4 (Merge 3.3) Issue #18343: faulthandler.register() now keeps the previous signal by Victor Stinner · 11 years ago
  51. 8d37954 Issue #18343: faulthandler.register() now keeps the previous signal handler by Victor Stinner · 11 years ago
  52. 54882bf Singular form just like the other error message. by Christian Heimes · 11 years ago
  53. 8087879 Singular form just like the other error message. by Christian Heimes · 11 years ago
  54. bfafab1 Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a by Christian Heimes · 11 years ago
  55. a24b4d2 Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a by Christian Heimes · 11 years ago
  56. 7217242 Fix segfault in pyexpat.c caused by 84375 u can be NULL, use XDECREF by Christian Heimes · 11 years ago
  57. 82e6b94 Fix resource leak in pickle module by Christian Heimes · 11 years ago
  58. b91ffaa Fix NULL ptr dereferencing in local_timezone(). nameo can be NULL by Christian Heimes · 11 years ago
  59. b582155 Fix memory leak in pyexpat PyUnknownEncodingHandler by Christian Heimes · 11 years ago
  60. dd3a6a5 Fix os.confstr(): the result type of the C function is size_t, not int by Victor Stinner · 11 years ago
  61. 9303749 Fix time.mktime() and datetime.datetime.timestamp() on AIX by Victor Stinner · 11 years ago
  62. d7a034b (Merge 3.3) Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 11 years ago
  63. 36b82d8 Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 11 years ago
  64. 7e00151 _ssl.c: strip trailing spaces by Victor Stinner · 11 years ago
  65. 86073dc (Merge 3.3) Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if by Victor Stinner · 11 years ago
  66. 6efa965 Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the input by Victor Stinner · 11 years ago
  67. 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago
  68. 9a644b2 Issue #9566: recv(), recvfrom(), send(), sendall() and sendto() methods by Victor Stinner · 11 years ago
  69. 7176577 Issue #9566: _winapi.WriteFile() now truncates length to DWORD_MAX (4294967295) by Victor Stinner · 11 years ago
  70. bc8ccce Issue #9566: zlib: Explicit cast to unsigned int to fix a compiler warning on Windows x64 by Victor Stinner · 11 years ago
  71. 9a28297 Issue #9566: _io: Use Py_SAFE_DOWNCAST for fix a compiler warning on Windows x64 by Victor Stinner · 11 years ago
  72. b4f39ee merge by Raymond Hettinger · 11 years ago
  73. 20b0f87 Misc improvements to collections.deque() by Raymond Hettinger · 11 years ago
  74. 5b2f184 Issue #11016: Don't define macros and constants that are already set by pyport.h by Christian Heimes · 11 years ago
  75. 99d6135 Define S_IFMT and S_IFLNK in pyport.h so posixmodule.c can use named constants instead by Christian Heimes · 11 years ago
  76. 9975877 Check for correct macro, code uses S_ISDIR(). by Christian Heimes · 11 years ago
  77. 91e8b81 Check for correct macro, code uses S_ISDIR(). by Christian Heimes · 11 years ago
  78. 1ce46d9 Issue #11016: Detect integer conversion on conversion from Python int to C mode_t by Victor Stinner · 11 years ago
  79. 858c947 Fix a typo in S_ISDIR, S_ISCHR, S_ISBLK and S_ISREG. by Christian Heimes · 11 years ago
  80. 8cfd67c (Merge 3.3) Issue #18135: Fix a possible integer overflow in by Victor Stinner · 11 years ago
  81. 9ee0203 Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write() by Victor Stinner · 11 years ago
  82. 4569cd5 _ssl.c: strip trailing spaces by Victor Stinner · 11 years ago
  83. c6ebd16 Issue #11016: Try to fix compilaton of the new _stat.c module on Windows by Victor Stinner · 11 years ago
  84. 0e03d6f Merge from 3.3 by Andrew Kuchling · 11 years ago
  85. da30acf Closes #18220: expand itertools.islice docstring to 2 lines by Andrew Kuchling · 11 years ago
  86. 446a39f Close #18285: add 'repeat' parameter to docstring for product by Andrew Kuchling · 11 years ago
  87. c77d9f3 Issue #11016: Add C implementation of the stat module as _stat by Christian Heimes · 11 years ago
  88. 6ce8d17 Merge from 3.3 by Andrew Kuchling · 11 years ago
  89. 9290dd1 #18113: avoid segfault if Py_XDECREF triggers code that calls set_panel_userptr again by Andrew Kuchling · 11 years ago
  90. 3468d25 Merge from 3.3 by Andrew Kuchling · 11 years ago
  91. b003ffa Closes #18239: correct description of count() in module docstring by Andrew Kuchling · 11 years ago
  92. 83358c9 Grammatical mistake in a comment by Brett Cannon · 11 years ago
  93. 15a7d2e merge 3.3 (#18248) by Benjamin Peterson · 11 years ago
  94. 19886b8 fix libffi build on AIX (closes #18248) by Benjamin Peterson · 11 years ago
  95. 262e7f3 fixed libffi on PPC without __NO_FPRS__ by Christian Heimes · 11 years ago
  96. 2f13f54 fixed libffi on PPC without __NO_FPRS__ by Christian Heimes · 11 years ago
  97. 7151551 Issue #18259: Declare sethostname in socketmodule.c for AIX by Christian Heimes · 11 years ago
  98. d2774c7 Issue #18259: Declare sethostname in socketmodule.c for AIX by Christian Heimes · 11 years ago
  99. 360b89c Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if it's available by Christian Heimes · 11 years ago
  100. f0400ba Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if it's available by Christian Heimes · 11 years ago