1. acd8e7c Issue #23648: Complete the list of modified functions for the PEP 475 by Victor Stinner · 10 years ago
  2. 81c41db Issue #23618: socket.socket.connect() now waits until the connection completes by Victor Stinner · 10 years ago
  3. 708d9ba Issue #23618: Document EINTR changes in socket documentation by Victor Stinner · 10 years ago
  4. bbe3803 What's New in Python 3.5: mention signal.set_wakeup_fd() enhancement on Windows by Victor Stinner · 10 years ago
  5. ef2a397 It wasn't a typo, it is the mnemonic (AT=@). by R David Murray · 10 years ago
  6. f8521d5 merge 3.4 (#12855) by Benjamin Peterson · 10 years ago
  7. 8218bd4 document what exactly str.splitlines() splits on (closes #12855) by Benjamin Peterson · 10 years ago
  8. 41290a6 Issue 23793: Add deque support for __add__(), __mul__(), and __imul__(). by Raymond Hettinger · 10 years ago
  9. 3822093 Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath. by Serhiy Storchaka · 10 years ago
  10. eb011cb What's New in Python 3.5, PEP 475: mention modified signal functions by Victor Stinner · 10 years ago
  11. 58e4134 Issue #23611: Serializing more "lookupable" objects (such as unbound methods by Serhiy Storchaka · 10 years ago
  12. 72e731c Issue #13583: sqlite3.Row now supports slice indexing. by Serhiy Storchaka · 10 years ago
  13. b310173 Issue #23485: Enhance and update selectors doc and test_selectors by Victor Stinner · 10 years ago
  14. 45ca48b Issue #23485: select.devpoll.poll() is now retried when interrupted by a signal by Victor Stinner · 10 years ago
  15. 4448c08 Issue #23485: select.kqueue.control() is now retried when interrupted by a signal by Victor Stinner · 10 years ago
  16. b6faf0d Fix typo in Doc/whatsnew/3.5.rst. by Berker Peksag · 10 years ago
  17. c86f252 merge by Raymond Hettinger · 10 years ago
  18. c43a666 Issue #23729: Improve docs for ElementTree namespace parsing by Raymond Hettinger · 10 years ago
  19. 41eba22 Issue #23485: select.epoll.poll() is now retried when interrupted by a signal by Victor Stinner · 10 years ago
  20. 3c7d6e0 Issue #23485: select.poll.poll() is now retried when interrupted by a signal by Victor Stinner · 10 years ago
  21. 9b16666 Ignore .rst files in the venv directory. by Brett Cannon · 10 years ago
  22. f70e1ca Issue #23485: select.select() is now retried automatically with the recomputed by Victor Stinner · 10 years ago
  23. ba6ea9b #2211: Fix typo, address missed review comment. by R David Murray · 10 years ago
  24. 93692bb What's New in Python 3.5: add pep 461 (bytes%args) and 465 (a@b) by Victor Stinner · 10 years ago
  25. 09dab7a Merge 3.5.0a3 release engineering changes back into trunk. by Larry Hastings · 10 years ago
  26. 7901b48 Issue #23171: csv.Writer.writerow() now supports arbitrary iterables. by Serhiy Storchaka · 10 years ago
  27. b2c2dc3 Regenerated pydoc topics and minor doc fixes for 3.5.0a3. by Larry Hastings · 10 years ago
  28. 1813c17 #2211: properly document the Morsel behavior changes. by R David Murray · 10 years ago
  29. 52d1493 format .. note properly by Benjamin Peterson · 10 years ago
  30. a766ddf Issue #23648: Document the PEP 475 in the "Porting to Python 3.5" section and by Victor Stinner · 10 years ago
  31. 764fc9b Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusive by Serhiy Storchaka · 10 years ago
  32. 2e3998f #11468: improve unittest basic example. Initial patch by Florian Preinstorfer. by Ezio Melotti · 10 years ago
  33. f6e31b7 Issue 23729: Document ElementTree namespace handling and fix an omission in the XPATH predicate table. by Raymond Hettinger · 10 years ago
  34. beed840 #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. by R David Murray · 10 years ago
  35. 218144a clarify behavior of shutil.move when destination exists (closes #22933) by Benjamin Peterson · 10 years ago
  36. a54aae0 Issue #23622: Unknown escapes in regular expressions that consist of ``'\'`` by Serhiy Storchaka · 10 years ago
  37. b876df4 Issue #23671: string.Template now allows to specify the "self" parameter as by Serhiy Storchaka · 10 years ago
  38. b365a06 change Σ to ν for obscure joke reasons by Benjamin Peterson · 10 years ago
  39. 0f05cea #11468: merge with 3.4. by Ezio Melotti · 10 years ago
  40. bca63b3 Issue #23688: Added support of arbitrary bytes-like objects and avoided by Serhiy Storchaka · 10 years ago
  41. 77d8997 Issue #23252: Added support for writing ZIP files to unseekable streams. by Serhiy Storchaka · 10 years ago
  42. 1b2f4d5 merge by Raymond Hettinger · 10 years ago
  43. 0a0d20e Merge: #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. by R David Murray · 10 years ago
  44. a4d4dd3 #23657 Don't explicitly do an isinstance check for str in zipapp by Paul Moore · 10 years ago
  45. 67057ab merge 3.4 (#22933) by Benjamin Peterson · 10 years ago
  46. 32ea165 Issue 23704: Add index(), copy(), and insert() to deques. Register deques as a MutableSequence. by Raymond Hettinger · 10 years ago
  47. 17d3a58 Issue #22832: Tweaked parameter names for fcntl module to better match by Serhiy Storchaka · 10 years ago
  48. 6faa624 Merge: #11726: Make linecache docs reflect that all files are treated the same. by R David Murray · 10 years ago
  49. 63998a3 #11726: Make linecache docs reflect that all files are treated the same. by R David Murray · 10 years ago
  50. 1dd4982 Issue #23681: The -b option now affects comparisons of bytes with int. by Serhiy Storchaka · 10 years ago
  51. a453cd8 Issue #23715: signal.sigwaitinfo() and signal.sigtimedwait() are now retried by Victor Stinner · 10 years ago
  52. 8490f5a Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and by Serhiy Storchaka · 10 years ago
  53. 31084ba Issue #23632: Memoryviews now allow tuple indexing (including for multi-dimensional memoryviews). by Antoine Pitrou · 10 years ago
  54. 79d68f9 Issue #23646: If time.sleep() is interrupted by a signal, the sleep is now by Victor Stinner · 10 years ago
  55. 009b811 Removed unintentional trailing spaces in non-external and non-generated C files. by Serhiy Storchaka · 10 years ago
  56. 072248e Merge 3.4 (linecache doc) by Victor Stinner · 10 years ago
  57. 376658f Issue #11726: Fix linecache example in the doc by Victor Stinner · 10 years ago
  58. 58b8f39 Merge 3.4 (linecache doc) by Victor Stinner · 10 years ago
  59. 93f0665 Issue #11726: clarify linecache doc: linecache is written to cache Python by Victor Stinner · 10 years ago
  60. de31134 Issue #12155: Fix queue doc example to join threads by Victor Stinner · 10 years ago
  61. 926ce70 Merge 3.4 (marshal doc) by Victor Stinner · 10 years ago
  62. 6a318d4 Issue #19428: Document that PyMarshal_ReadLongFromFile() and by Victor Stinner · 10 years ago
  63. 9c1a9b2 Issue #2211: Updated the implementation of the http.cookies.Morsel class. by Serhiy Storchaka · 10 years ago
  64. 302dbc6 Issue #18983: Allow selection of output units in timeit. by Robert Collins · 10 years ago
  65. 0c2fd89 Revert changeset d927047b1d8eb87738676980a24930d053ba2150 by Victor Stinner · 10 years ago
  66. e010d8f Issue #23682: Delete Python 2.2 mention from distutils documentation. by Berker Peksag · 10 years ago
  67. 6a98002 Issue #23682: Delete Python 2.2 mention from distutils documentation. by Berker Peksag · 10 years ago
  68. 85586eb merge 3.4 (#23679) by Benjamin Peterson · 10 years ago
  69. 59c4eb7 versionchanged for rc4 removal (closes #23679) by Benjamin Peterson · 10 years ago
  70. a84099b Issue #23549: Clarify confusion in heapq doc - accessing the mininmal element by Eli Bendersky · 10 years ago
  71. 39430da Issue #23549: Clarify confusion in heapq doc - accessing the mininmal element by Eli Bendersky · 10 years ago
  72. 102029d Issue #2052: Add charset parameter to HtmlDiff.make_file(). by Berker Peksag · 10 years ago
  73. fbd011d Fix minor docs markup errors. by Serhiy Storchaka · 10 years ago
  74. b19542d Fix minor docs markup errors. by Serhiy Storchaka · 10 years ago
  75. 76c95a0 merge 3.4 by Benjamin Peterson · 10 years ago
  76. 0d70ab6 __getslice__ certainly won't appear in the output by Benjamin Peterson · 10 years ago
  77. cb1dde5 Merge 3.4 by Brett Cannon · 10 years ago
  78. 2645bad Make the case to only support Python 2.7 when supporting 2/3 simultaneously by Brett Cannon · 10 years ago
  79. 64e4f7f Strip trailing whitespace by Brett Cannon · 10 years ago
  80. cc4dfc1 Issue #23491: Implement PEP 441: Improving Python Zip Application Support by Brett Cannon · 10 years ago
  81. f0f14f7 use the meth role for ZipFile.open by Benjamin Peterson · 10 years ago
  82. 3279995 Issue #23081: Document that PySequence_List also accepts iterables. by Berker Peksag · 10 years ago
  83. ce77ee9 Issue #22154: Add an example to show context management protocol support of ZipFile.open(). by Berker Peksag · 10 years ago
  84. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  85. 945c82e test by Victor Stinner · 10 years ago
  86. 38dae17 merge 3.4 by Benjamin Peterson · 10 years ago
  87. 09bb904 Issue #23081: Document that PySequence_List also accepts iterables. by Berker Peksag · 10 years ago
  88. 406221c Issue #22154: Add an example to show context management protocol support of ZipFile.open(). by Berker Peksag · 10 years ago
  89. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  90. da0870c Add versionadded directives for the matmul operator. by Berker Peksag · 10 years ago
  91. e7e497b Issue #23651: Fix typo in allow_abbrev docs. by Berker Peksag · 10 years ago
  92. 95bb714 Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later() by Victor Stinner · 10 years ago
  93. 62e977f Close issue23467: add %r compatibility to bytes and bytearray by Ethan Furman · 10 years ago
  94. fb581d9 Merge 3.4 (asyncio doc) by Victor Stinner · 10 years ago
  95. 84c717d asyncio doc: changes on the Queue API missed Python 3.4.3 release by Victor Stinner · 10 years ago
  96. 55f1949 Issue #23432: Remove duplicate content from SystemExit docs. by Berker Peksag · 10 years ago
  97. 77a6b20 Issue #23432: Remove duplicate content from SystemExit docs. by Berker Peksag · 10 years ago
  98. 80f6bb4 Merge 3.4 (os doc) by Victor Stinner · 10 years ago
  99. 47c41b4 Issue #23605: os.walk() doc now mentions shutil.rmtree() in the last example by Victor Stinner · 10 years ago
  100. 37f2034 Issue #22524: Rephrase scandir addition in What's New in Python 3.5 by Victor Stinner · 10 years ago