1. 333518e #15183: clarify timeit documentation to say that setup statement isn't timed by Andrew Kuchling · 9 years ago
  2. 4d9d256 #17445: difflib: add diff_bytes(), to compare bytes rather than str by Greg Ward · 9 years ago
  3. d19458a merge 3.4 (#23989) by Benjamin Peterson · 9 years ago
  4. 6de708f recommend requests library (closes #23989) by Benjamin Peterson · 9 years ago
  5. cdbe299 fix grammar by Benjamin Peterson · 9 years ago
  6. 770ce20 Regenerated pydoc-topics and fixed bad/suspicious doc markup for Python 3.5.0a4. by Larry Hastings · 9 years ago
  7. 6627389 Mark TarInfo.frombuf() and TarInfo.fromtarfile() as classmethods. by Berker Peksag · 9 years ago
  8. 37de910 Mark TarInfo.frombuf() and TarInfo.fromtarfile() as classmethods. by Berker Peksag · 9 years ago
  9. 0002d3c Issue #15566: Document encoding and errors parameters of TarInfo.frombuf(). by Berker Peksag · 9 years ago
  10. e4dde50 Issue #15566: Document encoding and errors parameters of TarInfo.frombuf(). by Berker Peksag · 9 years ago
  11. 1a16a83 Closes #23536: Clarified scope of fileConfig()'s API. by Vinay Sajip · 9 years ago
  12. 2d965c2 Issue #23536: Clarified scope of fileConfig()'s API. by Vinay Sajip · 9 years ago
  13. 6d7dced Fix two typos in AbstractBasicAuthHandler documentation. by Berker Peksag · 9 years ago
  14. 2e6ad42 #16914: reflow paragraph and add missing versionchanged. by R David Murray · 9 years ago
  15. 0c49b89 #16914: add timestamps to smtplib debugging output via new debuglevel 2. by R David Murray · 9 years ago
  16. 4c7f995 #7159: generalize urllib prior auth support. by R David Murray · 9 years ago
  17. 2b78129 #18128: use standard +NNNN timezone format in POT-Creation-Date header. by R David Murray · 9 years ago
  18. d2bc389 Issue #4254: Adds _curses.update_lines_cols() Patch by Arnon Yaari by Steve Dower · 10 years ago
  19. cb39d1f Issue 19933: Provide default argument for ndigits in round. Patch by Vajrasky Kok. by Steve Dower · 10 years ago
  20. 7a80389 Issue 23193: Add numeric_owner to tarfile.TarFile.extract() and tarfile.TarFile.extractall(). by Eric V. Smith · 10 years ago
  21. ef9ffcb properly wrap by Benjamin Peterson · 10 years ago
  22. 6e73000 Add a subprocess.run() function than returns a CalledProcess instance for a by Gregory P. Smith · 10 years ago
  23. 7c63fd3 issue9859: add the missing versionadded tag to the documentation. by Gregory P. Smith · 10 years ago
  24. f3cae79 Merge: #23957: fix typo. by R David Murray · 10 years ago
  25. 5be7f15 #23957: fix typo. by R David Murray · 10 years ago
  26. 4e72cce issue9859: Document test.support.detect_api_mismatch() and simplify its test. by Gregory P. Smith · 10 years ago
  27. a8b1206 issue9014: Include more formatting on :c:type:`PyObject` etc. by Gregory P. Smith · 10 years ago
  28. 0f2f3bc issue9014: Include more formatting on :c:type:`PyObject` etc. by Gregory P. Smith · 10 years ago
  29. b8dde4f issue9014: Properly document PyObject_HEAD and friends post-PEP-3123. by Gregory P. Smith · 10 years ago
  30. 1b24465 issue9014: Properly document PyObject_HEAD and friends post-PEP-3123. by Gregory P. Smith · 10 years ago
  31. 2f86a03 remove trailing space by Gregory P. Smith · 10 years ago
  32. 23a6a0d remove trailing space :) by Gregory P. Smith · 10 years ago
  33. 6eda1be issue22046: mention that zipfile can raise NotImplementedError on unsupported by Gregory P. Smith · 10 years ago
  34. f2a448a issue22046: mention that zipfile can raise NotImplementedError on unsupported by Gregory P. Smith · 10 years ago
  35. f887a61 #21146: give a more efficient recipe in gzip docs by Andrew Kuchling · 10 years ago
  36. dfa4e04 Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 10 years ago
  37. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 10 years ago
  38. a6cc551 Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES. by Larry Hastings · 10 years ago
  39. d827be8 Closes #23730: merge with 3.4 by Zachary Ware · 10 years ago
  40. ae9f0fe Issue #23730: Document the return value of ZipFile.extract by Zachary Ware · 10 years ago
  41. 38019d1 Closes #23938: List Windows XP as an unsupported platform. by Zachary Ware · 10 years ago
  42. 8396b8e Fix a grammar error in the porting HOWTO as found by Eric Smith. by Brett Cannon · 10 years ago
  43. fd53f98 Issue #23733: Mention bytes.__mod__ in the porting HOWTO. by Brett Cannon · 10 years ago
  44. 3764fc2 Fix doc build error by Antoine Pitrou · 10 years ago
  45. b9f2ab9 Fix duplicate doc entry for SSLContext.get_ca_certs() by Antoine Pitrou · 10 years ago
  46. 97aa953 Fix duplicate doc entry for SSLContext.get_ca_certs() by Antoine Pitrou · 10 years ago
  47. 4269d6d Issue #23732: Mention the new -b semantics in the porting HOWTO. by Brett Cannon · 10 years ago
  48. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 10 years ago
  49. 774ac37 Closes #17202: Merge with 3.4 by Zachary Ware · 10 years ago
  50. 4c9c848 Issue #17202: Add .bat to .hgeol to force them to CRLF. by Zachary Ware · 10 years ago
  51. 3f10346 Closes #23932: Merge with 3.4 by Zachary Ware · 10 years ago
  52. f3b990e Issue #23932: Update the tutorial section on function annotations. by Zachary Ware · 10 years ago
  53. ab792ac Doc clarification / edification on the semantics of the 'w*' format unit. by Larry Hastings · 10 years ago
  54. e6d3abd Merge: #17380: Document tp_init return value in extending docs. by R David Murray · 10 years ago
  55. 354c740 #17380: Document tp_init return value in extending docs. by R David Murray · 10 years ago
  56. e81a773 #23464: remove JoinableQueue that was deprecated in 3.4.4. by R David Murray · 10 years ago
  57. 556e08e Issue #12955: Change the urlopen() examples to use context managers where appropriate. by Berker Peksag · 10 years ago
  58. 9575e18 Issue #12955: Change the urlopen() examples to use context managers where appropriate. by Berker Peksag · 10 years ago
  59. 8ad751e Close #23904: fix pathlib documentation misleadingly mentioning that bytes objects are accepted in the PurePath constructor by Antoine Pitrou · 10 years ago
  60. 770319d Issue #23912: Fix code formatting in datamodel.rst. by Berker Peksag · 10 years ago
  61. 1c69c3e use imperative by Benjamin Peterson · 10 years ago
  62. eb7a97c Issue #23025: Add a mention of os.urandom to RAND_bytes and RAND_pseudo_bytes docs. by Berker Peksag · 10 years ago
  63. fe0a41a Issue #23668: Adds support for os.truncate and os.ftruncate on Windows by Steve Dower · 10 years ago
  64. 8d0c478 Close #23904: fix pathlib documentation misleadingly mentioning that bytes objects are accepted in the PurePath constructor by Antoine Pitrou · 10 years ago
  65. 2995cc6 Issue #23912: Fix code formatting in datamodel.rst. by Berker Peksag · 10 years ago
  66. 339e3f3 merge 3.4 by Benjamin Peterson · 10 years ago
  67. 2dbc6e6 Issue #23529: Limit the size of decompressed data when reading from by Antoine Pitrou · 10 years ago
  68. 2ce11d2 Null merge by Serhiy Storchaka · 10 years ago
  69. a7b9a1f Issue #23025: Add a mention of os.urandom to RAND_bytes and RAND_pseudo_bytes docs. by Berker Peksag · 10 years ago
  70. da5cbe6 Merge from 3.4 by Tim Golden · 10 years ago
  71. fe5ac52 Fix typo in telnet docs (reported by Keith Briggs) by Tim Golden · 10 years ago
  72. f1c5dea merge 3.4 by Benjamin Peterson · 10 years ago
  73. 6f362fa actually ssl3 is just completely broken by Benjamin Peterson · 10 years ago
  74. 291d7b0 Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not available. by Berker Peksag · 10 years ago
  75. 7ecfc82 Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not available. by Berker Peksag · 10 years ago
  76. 1469070 Issue #23853: Methods of SSL socket don't reset the socket timeout anymore each by Victor Stinner · 10 years ago
  77. 8912d14 Issue #23853: socket.socket.sendall() does no more reset the socket timeout by Victor Stinner · 10 years ago
  78. 3fbcafa Merge doc change from 3.4 by Tim Golden · 10 years ago
  79. 42c235e Added missing right bracket (reported by Daryl Klakouski) by Tim Golden · 10 years ago
  80. cae7bdb #3566: Clean up handling of remote server disconnects. by R David Murray · 10 years ago
  81. fcfcf85 Updated pprint examples in according to issue #19105. by Serhiy Storchaka · 10 years ago
  82. 778db28 Issue #10590: xml.sax.parseString() now supports string argument. by Serhiy Storchaka · 10 years ago
  83. 5cf2b72 Issue #15582: inspect.getdoc() now follows inheritance chains. by Serhiy Storchaka · 10 years ago
  84. 32ed750 Merge 3.4 (asyncio doc) by Victor Stinner · 10 years ago
  85. 72dcb0a Issue #23219: Update asyncio.wait_for() documentation by Victor Stinner · 10 years ago
  86. 61de087 Issue #2175: SAX parsers now support a character stream of InputSource object. by Serhiy Storchaka · 10 years ago
  87. acd8e7c Issue #23648: Complete the list of modified functions for the PEP 475 by Victor Stinner · 10 years ago
  88. 81c41db Issue #23618: socket.socket.connect() now waits until the connection completes by Victor Stinner · 10 years ago
  89. 708d9ba Issue #23618: Document EINTR changes in socket documentation by Victor Stinner · 10 years ago
  90. bbe3803 What's New in Python 3.5: mention signal.set_wakeup_fd() enhancement on Windows by Victor Stinner · 10 years ago
  91. ef2a397 It wasn't a typo, it is the mnemonic (AT=@). by R David Murray · 10 years ago
  92. f8521d5 merge 3.4 (#12855) by Benjamin Peterson · 10 years ago
  93. 8218bd4 document what exactly str.splitlines() splits on (closes #12855) by Benjamin Peterson · 10 years ago
  94. 41290a6 Issue 23793: Add deque support for __add__(), __mul__(), and __imul__(). by Raymond Hettinger · 10 years ago
  95. 3822093 Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath. by Serhiy Storchaka · 10 years ago
  96. eb011cb What's New in Python 3.5, PEP 475: mention modified signal functions by Victor Stinner · 10 years ago
  97. 58e4134 Issue #23611: Serializing more "lookupable" objects (such as unbound methods by Serhiy Storchaka · 10 years ago
  98. 72e731c Issue #13583: sqlite3.Row now supports slice indexing. by Serhiy Storchaka · 10 years ago
  99. b310173 Issue #23485: Enhance and update selectors doc and test_selectors by Victor Stinner · 10 years ago
  100. 45ca48b Issue #23485: select.devpoll.poll() is now retried when interrupted by a signal by Victor Stinner · 10 years ago