1. a9391a4 Closes #20160: Merged fix from 3.5. by Vinay Sajip · 8 years ago
  2. 0b58886 Issue #20160: Merged fix from 3.4. by Vinay Sajip · 8 years ago
  3. a0b2568 Issue #20160: Merged fix from 3.3. by Vinay Sajip · 8 years ago
  4. 6f25003 Issue #20160: Handled passing of large structs to callbacks correctly. by Vinay Sajip · 8 years ago
  5. 70214ad Issue #17599: Use unique _Py_REPARSE_DATA_BUFFER etc names to avoid conflict by Martin Panter · 8 years ago
  6. 43746c3 Closes #27661: Added tzinfo keyword argument to datetime.combine. by Alexander Belopolsky · 8 years ago
  7. bf5868d merge 3.5 (#27656) by Benjamin Peterson · 8 years ago
  8. dbaa559 all SCHED_ constants are optional (closes #27656) by Benjamin Peterson · 8 years ago
  9. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  10. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  11. 2561726 Merge 3.5 (issue #11048) by Victor Stinner · 8 years ago
  12. e33797b ctypes: fix CThunkObject_new() by Victor Stinner · 8 years ago
  13. 8e1d3a2 Issue 24773: Added a time_t overflow check. by Alexander Belopolsky · 8 years ago
  14. 996d72b Issue #7063: Remove dead code from array slice handling by Martin Panter · 8 years ago
  15. bd8b443 Issue #27591: Merge from 3.5 by Berker Peksag · 8 years ago
  16. 1fd497e Issue #27591: Set sigint_event to NULL if _PyOS_IsMainThread() returns false by Berker Peksag · 8 years ago
  17. 525a949 Issue #27130: Merge zlib 64-bit fixes from 3.5 by Martin Panter · 8 years ago
  18. 84544c1 Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module by Martin Panter · 8 years ago
  19. 5d0c598 Closes issue #24773: Implement PEP 495 (Local Time Disambiguation). by Alexander Belopolsky · 8 years ago
  20. d3afb62 Merge 3.5 (INVALID_SOCKET) by Victor Stinner · 8 years ago
  21. 524714e socket: use INVALID_SOCKET by Victor Stinner · 8 years ago
  22. 5e1989c Merge 3.5 (fix internal_select) by Victor Stinner · 8 years ago
  23. 0cec877 socket: Fix internal_select() by Victor Stinner · 8 years ago
  24. fe8d966 Issue #27567: Expose the POLLRDHUP constant in the select module by Berker Peksag · 8 years ago
  25. 0715ce3 add EPOLLEXCLUSIVE by Benjamin Peterson · 8 years ago
  26. 96e9716 expose EPOLLRDHUP (closes #27567) by Benjamin Peterson · 8 years ago
  27. 6fb9090 Issue #1621: Avoid signed int negation overflow in audioop by Martin Panter · 8 years ago
  28. 262dc1e Issue #27533: Release GIL in nt._isdir by Steve Dower · 8 years ago
  29. b22a677 Issue #27533: Release GIL in nt._isdir by Steve Dower · 8 years ago
  30. 243d8a7 Merge 3.5. by Stefan Krah · 8 years ago
  31. 8c126f1 Issue #26974: Fix segfault in the presence of absurd subclassing. Proactively by Stefan Krah · 8 years ago
  32. 3410c01 Issue #17711: Fixed unpickling by the persistent ID with protocol 0. by Serhiy Storchaka · 8 years ago
  33. dec25af Issue #17711: Fixed unpickling by the persistent ID with protocol 0. by Serhiy Storchaka · 8 years ago
  34. 044283a Issue #27512: Don't segfault when os.fspath() calls an object whose by Brett Cannon · 8 years ago
  35. 7386268 Issue #23804: Merge SSL recv() fix from 3.5 by Martin Panter · 8 years ago
  36. bed7f1a Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF by Martin Panter · 8 years ago
  37. 53e22bf Issue #22624: Python 3 requires clock() to build by Victor Stinner · 8 years ago
  38. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  39. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  40. 50600a7 merge 3.5 (#24557) by Benjamin Peterson · 8 years ago
  41. b8a2f51 assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes #24557) by Benjamin Peterson · 8 years ago
  42. 95657cd Issue #26243: Only the level argument to zlib.compress() is keyword argument by Serhiy Storchaka · 8 years ago
  43. b466f8f Remove duplicate AF_INET6 addition by Martin Panter · 8 years ago
  44. a32c4d0 Issue #27038: Expose DirEntry as os.DirEntry. by Brett Cannon · 8 years ago
  45. c78ca1e Issue #27186: Update os.fspath()/PyOS_FSPath() to check the return by Brett Cannon · 8 years ago
  46. 5ffdcad Fixed integer overflow in array.buffer_info(). by Serhiy Storchaka · 8 years ago
  47. 9e941d6 Fixed integer overflow in array.buffer_info(). by Serhiy Storchaka · 8 years ago
  48. 1d245fa Merge 3.5. by Stefan Krah · 8 years ago
  49. 947f099 Issue #27006: Do not use PyDec_CheckExact() on a type. by Stefan Krah · 8 years ago
  50. 8113f49 Merge 3.5. by Stefan Krah · 8 years ago
  51. 6817c59 Issue #27006: from_float(): call the subclass' __new__() and __init__(). by Stefan Krah · 8 years ago
  52. 696c8af Use macros instead of corresponding functions (they never fail) in _tkinter.c. by Serhiy Storchaka · 8 years ago
  53. 977b3ac Issue #27177: Match objects in the re module now support index-like objects by Serhiy Storchaka · 8 years ago
  54. 3583c3b Issue #26536: Use spaces instead of tabs by Berker Peksag · 8 years ago
  55. d91e676 Issue #27343: Fixed error message for conflicting initializers of ctypes.Structure. by Serhiy Storchaka · 8 years ago
  56. 886a5f3 Issue #27343: Fixed error message for conflicting initializers of ctypes.Structure. by Serhiy Storchaka · 8 years ago
  57. ea93ac0 Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes. by Steve Dower · 8 years ago
  58. d4b45cb ctypes: the type of b_size is Py_ssize_t. by Serhiy Storchaka · 8 years ago
  59. 85e6635 ctypes: the type of b_size is Py_ssize_t. by Serhiy Storchaka · 8 years ago
  60. 7410861 Issue #27330: Fixed possible leaks in the ctypes module. by Serhiy Storchaka · 8 years ago
  61. adef646 Issue #27330: Fixed possible leaks in the ctypes module. by Serhiy Storchaka · 8 years ago
  62. c716f18 Issue #26862: SYS_getdents64 does not need to be defined on android API 21. by Xavier de Gaye · 8 years ago
  63. e0b70cd Issue #16864: Cursor.lastrowid now supports REPLACE statement by Berker Peksag · 8 years ago
  64. c090876 merge 3.5 by Benjamin Peterson · 8 years ago
  65. 11a693d merge 3.4 by Benjamin Peterson · 8 years ago
  66. 06d49bb sync ordering of stddef.h includes with expat 2.1.1 by Benjamin Peterson · 8 years ago
  67. 17f0e61 - Modules/_collectionsmodule.c: Mark one more internal symbol as static. by doko@ubuntu.com · 8 years ago
  68. 4074f93 Issue #16182: Merge readline locale fix from 3.5 by Martin Panter · 8 years ago
  69. f00c49d Issue #16182: Fix readline begidx, endidx, and use locale encoding by Martin Panter · 8 years ago
  70. fcff437 - Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constants by doko@ubuntu.com · 8 years ago
  71. f84f259 Merge from 3.5 by Berker Peksag · 8 years ago
  72. 0e1d680 Fix typo in _sqlite/module.h by Berker Peksag · 8 years ago
  73. 0f355c0 Issue #27190: Merge from 3.5 by Berker Peksag · 8 years ago
  74. 7bea234 Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1 by Berker Peksag · 8 years ago
  75. b62ff6e Issue #25455: Fixed a crash in repr of recursive functools.partial objects. by Serhiy Storchaka · 8 years ago
  76. 179f960 Issue #25455: Fixed a crash in repr of recursive functools.partial objects. by Serhiy Storchaka · 8 years ago
  77. f0ee5cc Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. by Serhiy Storchaka · 8 years ago
  78. 9062c26 Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. by Serhiy Storchaka · 8 years ago
  79. f0d4621 merge 3.5 (#26556) by Benjamin Peterson · 8 years ago
  80. b5ad549 merge 3.4 (#26556) by Benjamin Peterson · 8 years ago
  81. 196d7db upgrade expt to 2.1.1 (closes #26556) by Benjamin Peterson · 8 years ago
  82. 96881cd Issue #27186: Add os.PathLike support to DirEntry by Brett Cannon · 8 years ago
  83. f41b82f Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support by Serhiy Storchaka · 8 years ago
  84. b4f43e9 Clarify documentation for os.fspath(). by Brett Cannon · 8 years ago
  85. 5dee655 Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7. by Serhiy Storchaka · 8 years ago
  86. 2561bf6 Issue #26305: Argument Clinic now escapes braces. No need to double them. by Serhiy Storchaka · 8 years ago
  87. ebe95fd Issue #26305: Argument Clinic now escapes braces. No need to double them. by Serhiy Storchaka · 8 years ago
  88. efe7256 Fix a comment. by Barry Warsaw · 8 years ago
  89. 118598a Issue #27066: Fixed SystemError if a custom opener (for open()) returns a by Barry Warsaw · 8 years ago
  90. 480e285 Issue #27066: Fixed SystemError if a custom opener (for open()) returns by Barry Warsaw · 8 years ago
  91. 1ab2f14 Issue #27164: Merge raw Deflate zdict support from 3.5 by Martin Panter · 8 years ago
  92. 3f0ee83 Issue #27164: Allow decompressing raw Deflate streams with predefined zdict by Martin Panter · 8 years ago
  93. d62548a issue27186: add open/io.open; patch by Jelle Zijlstra by Ethan Furman · 8 years ago
  94. 410ef8e issue27186: add C version of os.fspath(); patch by Jelle Zijlstra by Ethan Furman · 8 years ago
  95. 59ae8ec merge 3.5 by Benjamin Peterson · 8 years ago
  96. f585414 remove (hilarious) defaults for various constants getpath.c needs by Benjamin Peterson · 8 years ago
  97. 53595c4 replace custom validation logic in the parse module with a simple DFA validator (closes #26526) by Benjamin Peterson · 8 years ago
  98. e2e7168 Issue #27171: Fix typo in exception message by Martin Panter · 8 years ago
  99. 0b7d84d Issue #27171: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  100. e26da7c Issue #27171: Fix typos in documentation, comments, and test function names by Martin Panter · 8 years ago