1. 6f4fae8 Issue #23836: Document functions releasing the GIL in fileutils.c by Victor Stinner · 9 years ago
  2. 82c3e45 Issue #23836: Add _Py_write_noraise() function by Victor Stinner · 9 years ago
  3. 81541f4 merge 3.4 by Benjamin Peterson · 9 years ago
  4. 62d1c70 Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() and by Victor Stinner · 9 years ago
  5. 4fd929b remove assignment in conditional by Benjamin Peterson · 9 years ago
  6. 067bbba Check deques against common sequence tests (except for slicing). by Raymond Hettinger · 9 years ago
  7. bbe3803 What's New in Python 3.5: mention signal.set_wakeup_fd() enhancement on Windows by Victor Stinner · 9 years ago
  8. c19c396 Issue #23821: Fixed test_pdb failure under -O. by Serhiy Storchaka · 9 years ago
  9. a16de5d Issue #23821: Fixed test_pdb failure under -O. by Serhiy Storchaka · 9 years ago
  10. 05ddbf0 Issue #23838: linecache now clears the cache and returns an empty result on by Serhiy Storchaka · 9 years ago
  11. c512adc Issue #23838: linecache now clears the cache and returns an empty result on by Serhiy Storchaka · 9 years ago
  12. ef2a397 It wasn't a typo, it is the mnemonic (AT=@). by R David Murray · 9 years ago
  13. c05e260 Issue #23799: Added test.support.start_threads() for running and cleaning up by Serhiy Storchaka · 9 years ago
  14. 263dcd2 Issue #23799: Added test.support.start_threads() for running and cleaning up by Serhiy Storchaka · 9 years ago
  15. a772662 Issue #23618: Fix EINTR handling on Windows by Victor Stinner · 9 years ago
  16. f8521d5 merge 3.4 (#12855) by Benjamin Peterson · 9 years ago
  17. 8218bd4 document what exactly str.splitlines() splits on (closes #12855) by Benjamin Peterson · 9 years ago
  18. 70a46f6 Issue #23618: Enhance EINTR handling in socket.connect() by Victor Stinner · 9 years ago
  19. ee699e9 Issue #23618: Fix EINTR handling in socket.connect() by Victor Stinner · 9 years ago
  20. c4e819a Issue #23618: Cleanup internal_connect() in socketmodule.c by Victor Stinner · 9 years ago
  21. 41290a6 Issue 23793: Add deque support for __add__(), __mul__(), and __imul__(). by Raymond Hettinger · 9 years ago
  22. b6c15bc Issue #23618: Refactor internal_connect() by Victor Stinner · 9 years ago
  23. dd88d3d Issue #23618: Refactor internal_connect() by Victor Stinner · 9 years ago
  24. 1bb0aef Issue #22117: Fix integer overflow check in socket_parse_timeout() on Windows by Victor Stinner · 9 years ago
  25. e50e780 Issue #23611: Fixed enums pickling tests. Now all picklings work with all by Serhiy Storchaka · 9 years ago
  26. 5236e31 Issue #18473: Fixed pickle compatibility tests for optional modules. by Serhiy Storchaka · 9 years ago
  27. b9100e5 Issue #18473: Fixed pickle compatibility tests for optional modules. by Serhiy Storchaka · 9 years ago
  28. 3822093 Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath. by Serhiy Storchaka · 9 years ago
  29. dd83bd2 Issue #23618: Fix internal_connect_select() by Victor Stinner · 9 years ago
  30. 416f2e6 Issue #23618: internal_connect_select() now waits also for error events by Victor Stinner · 9 years ago
  31. e6951c6 Issue #23618: Refactor internal_select() to prepare socket.connect() for EINTR by Victor Stinner · 9 years ago
  32. 391fa71 Issue #23618: Refactor the _socket module by Victor Stinner · 9 years ago
  33. eb011cb What's New in Python 3.5, PEP 475: mention modified signal functions by Victor Stinner · 9 years ago
  34. 58e4134 Issue #23611: Serializing more "lookupable" objects (such as unbound methods by Serhiy Storchaka · 9 years ago
  35. 72e731c Issue #13583: sqlite3.Row now supports slice indexing. by Serhiy Storchaka · 9 years ago
  36. 80d84c8 Merge heads by Serhiy Storchaka · 9 years ago
  37. d5d818d Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. by Serhiy Storchaka · 9 years ago
  38. bfe1824 Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. by Serhiy Storchaka · 9 years ago
  39. b310173 Issue #23485: Enhance and update selectors doc and test_selectors by Victor Stinner · 9 years ago
  40. 45ca48b Issue #23485: select.devpoll.poll() is now retried when interrupted by a signal by Victor Stinner · 9 years ago
  41. 4448c08 Issue #23485: select.kqueue.control() is now retried when interrupted by a signal by Victor Stinner · 9 years ago
  42. b6faf0d Fix typo in Doc/whatsnew/3.5.rst. by Berker Peksag · 9 years ago
  43. c86f252 merge by Raymond Hettinger · 9 years ago
  44. c43a666 Issue #23729: Improve docs for ElementTree namespace parsing by Raymond Hettinger · 9 years ago
  45. 41eba22 Issue #23485: select.epoll.poll() is now retried when interrupted by a signal by Victor Stinner · 9 years ago
  46. 3c7d6e0 Issue #23485: select.poll.poll() is now retried when interrupted by a signal by Victor Stinner · 9 years ago
  47. fa09beb Issue #23485: Add _PyTime_FromMillisecondsObject() function by Victor Stinner · 9 years ago
  48. 749a6a8 Issue #23485: Fix test_signal, select.select() now retries the syscall if the by Victor Stinner · 9 years ago
  49. 9b16666 Ignore .rst files in the venv directory. by Brett Cannon · 9 years ago
  50. 6aa446c PEP 475: on EINTR, retry the function even if the timeout is equals to zero by Victor Stinner · 9 years ago
  51. f70e1ca Issue #23485: select.select() is now retried automatically with the recomputed by Victor Stinner · 9 years ago
  52. 3f5d48b Partially revert 3603bae63c13 (issue23326) for asyncio. by Serhiy Storchaka · 9 years ago
  53. ba6ea9b #2211: Fix typo, address missed review comment. by R David Murray · 9 years ago
  54. c156e51 Merge: #23792: also catch interrupt around pipe.write. by R David Murray · 9 years ago
  55. e7f5e14 #23792: also catch interrupt around pipe.write. by R David Murray · 9 years ago
  56. 93692bb What's New in Python 3.5: add pep 461 (bytes%args) and 465 (a@b) by Victor Stinner · 9 years ago
  57. 5fdde71 Issue #23605: Fix typo in an os.walk() comment by Victor Stinner · 9 years ago
  58. 81c6df5 (Merge 3.4) Issue #22585: os.urandom() now releases the GIL when the by Victor Stinner · 9 years ago
  59. 9aa1331 Issue #22585: os.urandom() now releases the GIL when the getentropy() is used by Victor Stinner · 9 years ago
  60. 79b74ae Issue #22181: os.urandom() now releases the GIL when the getrandom() by Victor Stinner · 9 years ago
  61. a52f31d Fix PY_VERSION in Include/patchlevel.h to reflect our post-3.5.0a3 state. by Larry Hastings · 9 years ago
  62. 09dab7a Merge 3.5.0a3 release engineering changes back into trunk. by Larry Hastings · 9 years ago
  63. 45cff0c Issue #22117: Try to fix rounding in conversion from Python double to _PyTime_t by Victor Stinner · 9 years ago
  64. e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 9 years ago
  65. 2e1c4e5 Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. by Serhiy Storchaka · 9 years ago
  66. 04d09eb Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. by Serhiy Storchaka · 9 years ago
  67. be1c60c Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of by Serhiy Storchaka · 9 years ago
  68. 4aa8679 Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of by Serhiy Storchaka · 9 years ago
  69. 2c7b5a9 Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on by Serhiy Storchaka · 9 years ago
  70. 7901b48 Issue #23171: csv.Writer.writerow() now supports arbitrary iterables. by Serhiy Storchaka · 9 years ago
  71. a695f83 Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methods by Victor Stinner · 9 years ago
  72. 7d0325d #23745: handle duplicate MIME parameter names in new parser. by R David Murray · 9 years ago
  73. 869e177 Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING by Victor Stinner · 9 years ago
  74. bcdd777 Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestamps by Victor Stinner · 9 years ago
  75. c4bb599 Merge: #23745: handle duplicate MIME parameter names in new parser. by R David Murray · 9 years ago
  76. 520bddf Issue #23752: When built from an existing file descriptor, io.FileIO() now only by Victor Stinner · 9 years ago
  77. edddf99 Issue #22117: Add assertions to _PyTime_AsTimeval() and _PyTime_AsTimespec() to by Victor Stinner · 9 years ago
  78. ea9c0dd Issue #22117: Fix usage of _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  79. 160e819 Issue #23694: Fix usage of _Py_open() in the _posixsubprocess module by Victor Stinner · 9 years ago
  80. e4a994d Issue #22117: Fix rounding of fromtimestamp() methods of datetime.datetime and by Victor Stinner · 9 years ago
  81. dca028b Issue #22117: Fix os.utime(), it now rounds the timestamp towards minus by Victor Stinner · 9 years ago
  82. f81f0f9 Issue #22117: Fix rounding and implement _PyTime_ROUND_FLOOR in: by Victor Stinner · 9 years ago
  83. 7362403 Added tag v3.5.0a3 for changeset 82656e28b5e5 by Larry Hastings · 9 years ago
  84. 02d1db9 Release bump for Python 3.5.0a3. by Larry Hastings · 9 years ago
  85. b2c2dc3 Regenerated pydoc topics and minor doc fixes for 3.5.0a3. by Larry Hastings · 9 years ago
  86. a3a100b Issue #22390: test.regrtest now emits a warning if temporary files or by Serhiy Storchaka · 9 years ago
  87. 1bd18ba Issue #22117: Cleanup pytime.c/.h by Victor Stinner · 9 years ago
  88. 09e5cf2 Issue #22117: Use the _PyTime_t API in _datetime.datetime() constructor by Victor Stinner · 9 years ago
  89. 10915aa Issue #22390: test.regrtest now emits a warning if temporary files or by Serhiy Storchaka · 9 years ago
  90. 07360df Issue #14260: The groupindex attribute of regular expression pattern object by Serhiy Storchaka · 9 years ago
  91. 1813c17 #2211: properly document the Morsel behavior changes. by R David Murray · 9 years ago
  92. 0deefd5 merge 3.4 (#23801) by Benjamin Peterson · 9 years ago
  93. d90f8d1 Closes #23801 - Ignore entire preamble to multipart in cgi.FieldStorage by Donald Stufft · 9 years ago
  94. f375b0a Merge: #23792: Ignore KeyboardInterrupt when the pydoc pager is active. by R David Murray · 9 years ago
  95. 1058cda #23792: Ignore KeyboardInterrupt when the pydoc pager is active. by R David Murray · 9 years ago
  96. 1b74d63 Added explicit tests for issue #23803. by Serhiy Storchaka · 9 years ago
  97. 48070c1 Issue #23803: Fixed str.partition() and str.rpartition() when a separator by Serhiy Storchaka · 9 years ago
  98. bfbfc8d Removed unintentional trailing spaces in text files. by Serhiy Storchaka · 9 years ago
  99. 1770fde Make some tests more frienly to MemoryError. by Serhiy Storchaka · 9 years ago
  100. 9db5500 Make some tests more frienly to MemoryError. by Serhiy Storchaka · 9 years ago