1. 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
  2. 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
  3. b7f1f65 Issue #18227: "Free" function of bz2, lzma and zlib modules has no return value (void) by Victor Stinner · 11 years ago
  4. 11ebff2 Issue #18203: Replace malloc() with PyMem_Malloc() in _ssl for the password by Victor Stinner · 11 years ago
  5. 5064a52 Issue #18227: Use PyMem_RawAlloc() in bz2, lzma and zlib modules by Victor Stinner · 11 years ago
  6. 6ce0dbf Fix a compiler warning in posix_sendfile() on FreeBSD: by Victor Stinner · 11 years ago
  7. b640491 Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules by Victor Stinner · 11 years ago
  8. 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
  9. b385529 Fix #ifdef by Raymond Hettinger · 11 years ago
  10. 82df925 Use macros for marking and checking endpoints in the doubly-linked list of blocks. by Raymond Hettinger · 11 years ago
  11. ef9b47f merge by Raymond Hettinger · 11 years ago
  12. f3a67b7 Improve variable names in deque_count() by Raymond Hettinger · 11 years ago
  13. 0507bf5 Issue #3329: Implement the PEP 445 by Victor Stinner · 11 years ago
  14. df715ba Apply the PyObject_VAR_HEAD and Py_SIZE macros by Raymond Hettinger · 11 years ago
  15. 5bfa867 Refactor deque_traverse(). by Raymond Hettinger · 11 years ago
  16. 98054b4 Remove unnecessary branches from count() and reverse(). by Raymond Hettinger · 11 years ago
  17. de68e0c Speed-up deque indexing by changing the deque block length to a power of two. by Raymond Hettinger · 11 years ago
  18. 0857ab4 (Merge 3.3) Issue #18343: faulthandler.register() now keeps the previous signal by Victor Stinner · 11 years ago
  19. 8d37954 Issue #18343: faulthandler.register() now keeps the previous signal handler by Victor Stinner · 11 years ago
  20. 54882bf Singular form just like the other error message. by Christian Heimes · 11 years ago
  21. 8087879 Singular form just like the other error message. by Christian Heimes · 11 years ago
  22. bfafab1 Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a by Christian Heimes · 11 years ago
  23. a24b4d2 Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a by Christian Heimes · 11 years ago
  24. 7217242 Fix segfault in pyexpat.c caused by 84375 u can be NULL, use XDECREF by Christian Heimes · 11 years ago
  25. 82e6b94 Fix resource leak in pickle module by Christian Heimes · 11 years ago
  26. b91ffaa Fix NULL ptr dereferencing in local_timezone(). nameo can be NULL by Christian Heimes · 11 years ago
  27. b582155 Fix memory leak in pyexpat PyUnknownEncodingHandler by Christian Heimes · 11 years ago
  28. dd3a6a5 Fix os.confstr(): the result type of the C function is size_t, not int by Victor Stinner · 11 years ago
  29. 9303749 Fix time.mktime() and datetime.datetime.timestamp() on AIX by Victor Stinner · 11 years ago
  30. d7a034b (Merge 3.3) Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 11 years ago
  31. 36b82d8 Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 11 years ago
  32. 7e00151 _ssl.c: strip trailing spaces by Victor Stinner · 11 years ago
  33. 86073dc (Merge 3.3) Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if by Victor Stinner · 11 years ago
  34. 6efa965 Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the input by Victor Stinner · 11 years ago
  35. 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago
  36. 9a644b2 Issue #9566: recv(), recvfrom(), send(), sendall() and sendto() methods by Victor Stinner · 11 years ago
  37. 7176577 Issue #9566: _winapi.WriteFile() now truncates length to DWORD_MAX (4294967295) by Victor Stinner · 11 years ago
  38. bc8ccce Issue #9566: zlib: Explicit cast to unsigned int to fix a compiler warning on Windows x64 by Victor Stinner · 11 years ago
  39. 9a28297 Issue #9566: _io: Use Py_SAFE_DOWNCAST for fix a compiler warning on Windows x64 by Victor Stinner · 11 years ago
  40. b4f39ee merge by Raymond Hettinger · 11 years ago
  41. 20b0f87 Misc improvements to collections.deque() by Raymond Hettinger · 11 years ago
  42. 5b2f184 Issue #11016: Don't define macros and constants that are already set by pyport.h by Christian Heimes · 11 years ago
  43. 99d6135 Define S_IFMT and S_IFLNK in pyport.h so posixmodule.c can use named constants instead by Christian Heimes · 11 years ago
  44. 9975877 Check for correct macro, code uses S_ISDIR(). by Christian Heimes · 11 years ago
  45. 91e8b81 Check for correct macro, code uses S_ISDIR(). by Christian Heimes · 11 years ago
  46. 1ce46d9 Issue #11016: Detect integer conversion on conversion from Python int to C mode_t by Victor Stinner · 11 years ago
  47. 858c947 Fix a typo in S_ISDIR, S_ISCHR, S_ISBLK and S_ISREG. by Christian Heimes · 11 years ago
  48. 8cfd67c (Merge 3.3) Issue #18135: Fix a possible integer overflow in by Victor Stinner · 11 years ago
  49. 9ee0203 Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write() by Victor Stinner · 11 years ago
  50. 4569cd5 _ssl.c: strip trailing spaces by Victor Stinner · 11 years ago
  51. c6ebd16 Issue #11016: Try to fix compilaton of the new _stat.c module on Windows by Victor Stinner · 11 years ago
  52. 0e03d6f Merge from 3.3 by Andrew Kuchling · 11 years ago
  53. da30acf Closes #18220: expand itertools.islice docstring to 2 lines by Andrew Kuchling · 11 years ago
  54. 446a39f Close #18285: add 'repeat' parameter to docstring for product by Andrew Kuchling · 11 years ago
  55. c77d9f3 Issue #11016: Add C implementation of the stat module as _stat by Christian Heimes · 11 years ago
  56. 6ce8d17 Merge from 3.3 by Andrew Kuchling · 11 years ago
  57. 9290dd1 #18113: avoid segfault if Py_XDECREF triggers code that calls set_panel_userptr again by Andrew Kuchling · 11 years ago
  58. 3468d25 Merge from 3.3 by Andrew Kuchling · 11 years ago
  59. b003ffa Closes #18239: correct description of count() in module docstring by Andrew Kuchling · 11 years ago
  60. 83358c9 Grammatical mistake in a comment by Brett Cannon · 11 years ago
  61. 15a7d2e merge 3.3 (#18248) by Benjamin Peterson · 11 years ago
  62. 19886b8 fix libffi build on AIX (closes #18248) by Benjamin Peterson · 11 years ago
  63. 262e7f3 fixed libffi on PPC without __NO_FPRS__ by Christian Heimes · 11 years ago
  64. 2f13f54 fixed libffi on PPC without __NO_FPRS__ by Christian Heimes · 11 years ago
  65. 7151551 Issue #18259: Declare sethostname in socketmodule.c for AIX by Christian Heimes · 11 years ago
  66. d2774c7 Issue #18259: Declare sethostname in socketmodule.c for AIX by Christian Heimes · 11 years ago
  67. 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
  68. 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
  69. 8f0aae5 (Merge 3.3) ctypes: AIX needs an explicit #include <alloca.h> to get alloca() by Victor Stinner · 11 years ago
  70. 43b2639 ctypes: AIX needs an explicit #include <alloca.h> to get alloca() by Victor Stinner · 11 years ago
  71. 9a5395a Issue #18147: Add diagnostic functions to ssl.SSLContext(). by Christian Heimes · 11 years ago
  72. f567727 Merge with 3.3 by Andrew Kuchling · 11 years ago
  73. c7b6c50 Describe 'surrogateescape' in the documentation. by Andrew Kuchling · 11 years ago
  74. 8a2a902 Merge with 3.3 by Andrew Kuchling · 11 years ago
  75. 53e5ea7 #18113: Objects associated to a curses.panel object with set_userptr() were leaked. by Andrew Kuchling · 11 years ago
  76. 36f01ad Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  77. 4d70562 Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  78. 200bb1b Simplify return value of ssl.get_default_verify_paths by Christian Heimes · 11 years ago
  79. 75b8426 fixd refleak by Christian Heimes · 11 years ago
  80. 36451f0 (3.3->default) Ensure that the fix for #17269 also works on OSX 10.4 by Ronald Oussoren · 11 years ago
  81. a822d366 Ensure that the fix for #17269 also works on OSX 10.4 by Ronald Oussoren · 11 years ago
  82. 46bebee Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store. by Christian Heimes · 11 years ago
  83. 142ec2c get_default_verify_paths doesn't belong inside the ifdef block by Christian Heimes · 11 years ago
  84. 6d7ad13 Issue #18143: Implement ssl.get_default_verify_paths() in order to debug by Christian Heimes · 11 years ago
  85. ac0ad88 Issue #17931: Resolve confusion on Windows between pids and process handles. by Richard Oudkerk · 11 years ago
  86. 6f69251 Add reference implementation for PEP 443 by Łukasz Langa · 11 years ago
  87. 072318b Issue #13772: Use syntax for literal wchar_t character by Victor Stinner · 11 years ago
  88. 31b3b92 Issue #13772: Mark helper functions as private (static) by Victor Stinner · 11 years ago
  89. e87267d Issue #13772: Fix a compiler warning on Windows by Victor Stinner · 11 years ago
  90. 5a43676 Issue #13772: fix _check_dirA(): call *A() functions, not *W() functions by Victor Stinner · 11 years ago
  91. e7e7eba Issue #13772: Fix compiler warnings on Windows by Victor Stinner · 11 years ago
  92. fbf50d4 Issue #9566: Fix compiler warning on Windows 64-bit in _bz2module.c by Victor Stinner · 11 years ago
  93. 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
  94. 0b81111 (Merge 3.3) Close #18109: os.uname() now decodes fields from the locale by Victor Stinner · 11 years ago
  95. a534fc4 Close #18109: os.uname() now decodes fields from the locale encoding, and by Victor Stinner · 11 years ago
  96. 04754b0 Support multiarch build in tests. by Stefan Krah · 11 years ago
  97. 891ca9e Backport bff16086f03b and bcaaaa00425b. by Stefan Krah · 11 years ago
  98. 6edda14 Issue #17768: Support newline fill character in decimal.py and NUL fill by Stefan Krah · 11 years ago
  99. 37a79a1 Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw by Serhiy Storchaka · 11 years ago
  100. 3a09286 Issue #13772: Restored directory detection of targets in `os.symlink` on Windows, which was temporarily removed in Python 3.2.3 due to an incomplete implementation. The implementation now works even if the symlink is created in a location other than the current directory. by Jason R. Coombs · 11 years ago