1. f3e40fa Issue 24180: Documentation for PEP 492 changes. by Yury Selivanov · 9 years ago
  2. b1cc37c improve wording by Benjamin Peterson · 9 years ago
  3. 57c74fc Issue 24248: Deprecate inspect.Signature.from_function and .from_builtin by Yury Selivanov · 9 years ago
  4. bcd4fc1 Issue 20691: Add follow_wrapped arg to inspect.signature/from_callable. by Yury Selivanov · 9 years ago
  5. c17686f Issue #13866: add *quote_via* argument to urlencode. by R David Murray · 9 years ago
  6. 8308444 #24218: Add SMTPUTF8 support to send_message. by R David Murray · 9 years ago
  7. fdb23c2 #20098: add mangle_from_ policy option. by R David Murray · 9 years ago
  8. 224ef3e #24211: Add RFC6532 support to the email library. by R David Murray · 9 years ago
  9. b744f3a #21083: add get_content_disposition method to email.message. by R David Murray · 9 years ago
  10. b9cec6a Issue #16314: Added support for the LZMA compression in distutils. by Serhiy Storchaka · 9 years ago
  11. b8cd3e4 #21804: Add RFC 6856 (UTF8) support to poplib. by R David Murray · 9 years ago
  12. cee7cf6 #22027: Add RFC6531 support to smtplib. by R David Murray · 9 years ago
  13. b907a51 Issue 24190: Add inspect.BoundArguments.apply_defaults() method. by Yury Selivanov · 9 years ago
  14. 14ef1a1 remove extra space by Benjamin Peterson · 9 years ago
  15. 5562c903 remove % from title, since it makes latex barf by Benjamin Peterson · 9 years ago
  16. 2f3742b Issue #1322: platform.dist() and platform.linux_distribution() functions are now deprecated. by Berker Peksag · 9 years ago
  17. eac503a Issue #24064: Property() docstrings are now writeable. (Patch by Berker Peksag.) by Raymond Hettinger · 9 years ago
  18. f0eeedf Issue #22681: Added support for the koi8_t encoding. by Serhiy Storchaka · 9 years ago
  19. ad8a1c3 Issue #22682: Added support for the kz1048 encoding. by Serhiy Storchaka · 9 years ago
  20. 0d4df75 Issue #15027: The UTF-32 encoder is now 3x to 7x faster. by Serhiy Storchaka · 9 years ago
  21. 5096088 doc: Briefly mention C API changes in whatsnew. by Yury Selivanov · 9 years ago
  22. b5d6a9d Mention PEP 492 in whatsnew. by Yury Selivanov · 9 years ago
  23. a33df31 #21795: advertise 8BITMIME if decode_data is False. by R David Murray · 9 years ago
  24. a6429db #21800: Add RFC 6855 support to imaplib. by R David Murray · 9 years ago
  25. 8cb6569 Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. by Gregory P. Smith · 9 years ago
  26. 4d9d256 #17445: difflib: add diff_bytes(), to compare bytes rather than str by Greg Ward · 9 years ago
  27. 0c49b89 #16914: add timestamps to smtplib debugging output via new debuglevel 2. by R David Murray · 9 years ago
  28. 4c7f995 #7159: generalize urllib prior auth support. by R David Murray · 9 years ago
  29. 2b78129 #18128: use standard +NNNN timezone format in POT-Creation-Date header. by R David Murray · 9 years ago
  30. d2bc389 Issue #4254: Adds _curses.update_lines_cols() Patch by Arnon Yaari by Steve Dower · 9 years ago
  31. 7a80389 Issue 23193: Add numeric_owner to tarfile.TarFile.extract() and tarfile.TarFile.extractall(). by Eric V. Smith · 9 years ago
  32. 6e73000 Add a subprocess.run() function than returns a CalledProcess instance for a by Gregory P. Smith · 9 years ago
  33. a6cc551 Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES. by Larry Hastings · 9 years ago
  34. 38019d1 Closes #23938: List Windows XP as an unsupported platform. by Zachary Ware · 9 years ago
  35. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  36. e81a773 #23464: remove JoinableQueue that was deprecated in 3.4.4. by R David Murray · 9 years ago
  37. 61de087 Issue #2175: SAX parsers now support a character stream of InputSource object. by Serhiy Storchaka · 9 years ago
  38. acd8e7c Issue #23648: Complete the list of modified functions for the PEP 475 by Victor Stinner · 9 years ago
  39. 81c41db Issue #23618: socket.socket.connect() now waits until the connection completes by Victor Stinner · 9 years ago
  40. 708d9ba Issue #23618: Document EINTR changes in socket documentation by Victor Stinner · 9 years ago
  41. bbe3803 What's New in Python 3.5: mention signal.set_wakeup_fd() enhancement on Windows by Victor Stinner · 9 years ago
  42. ef2a397 It wasn't a typo, it is the mnemonic (AT=@). by R David Murray · 9 years ago
  43. 3822093 Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath. by Serhiy Storchaka · 9 years ago
  44. eb011cb What's New in Python 3.5, PEP 475: mention modified signal functions by Victor Stinner · 9 years ago
  45. 58e4134 Issue #23611: Serializing more "lookupable" objects (such as unbound methods by Serhiy Storchaka · 9 years ago
  46. 45ca48b Issue #23485: select.devpoll.poll() is now retried when interrupted by a signal by Victor Stinner · 9 years ago
  47. 4448c08 Issue #23485: select.kqueue.control() is now retried when interrupted by a signal by Victor Stinner · 9 years ago
  48. b6faf0d Fix typo in Doc/whatsnew/3.5.rst. by Berker Peksag · 9 years ago
  49. 41eba22 Issue #23485: select.epoll.poll() is now retried when interrupted by a signal by Victor Stinner · 9 years ago
  50. 3c7d6e0 Issue #23485: select.poll.poll() is now retried when interrupted by a signal 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. ba6ea9b #2211: Fix typo, address missed review comment. by R David Murray · 9 years ago
  53. 93692bb What's New in Python 3.5: add pep 461 (bytes%args) and 465 (a@b) by Victor Stinner · 9 years ago
  54. 1813c17 #2211: properly document the Morsel behavior changes. by R David Murray · 9 years ago
  55. 52d1493 format .. note properly by Benjamin Peterson · 9 years ago
  56. a766ddf Issue #23648: Document the PEP 475 in the "Porting to Python 3.5" section and by Victor Stinner · 9 years ago
  57. 764fc9b Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusive by Serhiy Storchaka · 9 years ago
  58. b876df4 Issue #23671: string.Template now allows to specify the "self" parameter as by Serhiy Storchaka · 9 years ago
  59. 77d8997 Issue #23252: Added support for writing ZIP files to unseekable streams. by Serhiy Storchaka · 9 years ago
  60. 1dd4982 Issue #23681: The -b option now affects comparisons of bytes with int. by Serhiy Storchaka · 9 years ago
  61. 9c1a9b2 Issue #2211: Updated the implementation of the http.cookies.Morsel class. by Serhiy Storchaka · 9 years ago
  62. 102029d Issue #2052: Add charset parameter to HtmlDiff.make_file(). by Berker Peksag · 9 years ago
  63. cc4dfc1 Issue #23491: Implement PEP 441: Improving Python Zip Application Support by Brett Cannon · 9 years ago
  64. 95bb714 Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later() by Victor Stinner · 9 years ago
  65. 37f2034 Issue #22524: Rephrase scandir addition in What's New in Python 3.5 by Victor Stinner · 9 years ago
  66. 6036e44 Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir() by Victor Stinner · 9 years ago
  67. 490055a Issue #20204: Deprecation warning is now raised for builtin type without the by Serhiy Storchaka · 10 years ago
  68. 76998fe Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual environments (patch by Paul Moore) by Steve Dower · 10 years ago
  69. 9121fe8 Add a whatsnew entry for issue #22003. by Berker Peksag · 10 years ago
  70. 8dcc1a9 Issue #23437: Update NEWS and whatsnew/3.5 by Steve Dower · 10 years ago
  71. 8089cd6 Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser. by Berker Peksag · 10 years ago
  72. 0fe6325 Issue #21717: tarfile.open() now supports 'x' (exclusive creation) mode. by Berker Peksag · 10 years ago
  73. c1efe5f Issue #23344: marshal.dumps() is now 20-25% faster on average. by Serhiy Storchaka · 10 years ago
  74. ce921c62 Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster on by Serhiy Storchaka · 10 years ago
  75. bd09d7b Fix typos in Doc/whatsnew/3.5.rst. by Berker Peksag · 10 years ago
  76. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 10 years ago
  77. bf5e960 Issue #20289: cgi.FieldStorage() now supports the context management protocol. by Berker Peksag · 10 years ago
  78. 088ca8b Fix typos in Doc/whatsnew/3.5.rst. by Berker Peksag · 10 years ago
  79. 87d0b45 Issue #15381: Optimized io.BytesIO to make less allocations and copyings. by Serhiy Storchaka · 10 years ago
  80. 83e8027 Issue #22818: Splitting on a pattern that could match an empty string now by Serhiy Storchaka · 10 years ago
  81. f5324d7 Closes #22668: Merge from 3.4. by Stefan Krah · 10 years ago
  82. 618e315 Add whatsnew entry for issue #5309. by Berker Peksag · 10 years ago
  83. 47efb4a Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError. by Serhiy Storchaka · 10 years ago
  84. 07985ef Issue #22286: The "backslashreplace" error handlers now works with by Serhiy Storchaka · 10 years ago
  85. a5d0c7c Issue #23185: add math.inf and math.nan constants. by Mark Dickinson · 10 years ago
  86. 02d8454 Issue #23014: Make importlib.abc.Loader.create_module() required when by Brett Cannon · 10 years ago
  87. e4db769 Issue #21793: Added http.HTTPStatus enums (i.e. HTTPStatus.OK, by Serhiy Storchaka · 10 years ago
  88. bb44fe0 Issue #22389: Add contextlib.redirect_stderr(). by Berker Peksag · 10 years ago
  89. b6e2556 Issue #22834: Have import suppress FileNotFoundError when the current by Brett Cannon · 10 years ago
  90. df4518c Issue #22453: Removed non-documented macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
  91. c216c48 Close #19494: add urrlib.request.HTTPBasicPriorAuthHandler by Nick Coghlan · 10 years ago
  92. 39e4c4d Issue #21650: Add an `--sort-keys` option to json.tool CLI. by Berker Peksag · 10 years ago
  93. c1ded29 Issue #22388: Unified the style of "Contributed by" sentences in What's New. by Serhiy Storchaka · 10 years ago
  94. 8f791d3 Issue #6623: Remove deprecated Netrc class in the ftplib module. by Berker Peksag · 10 years ago
  95. 7438e4b Issue 1519638: Now unmatched groups are replaced with empty strings in re.sub() by Serhiy Storchaka · 10 years ago
  96. 4487dd0 #18615: Make sndhdr return namedtuples. by R David Murray · 10 years ago
  97. 882c95c whatsnew: Fix markup. by Berker Peksag · 10 years ago
  98. fa0423b whatsnew: Add PEP 478. by Berker Peksag · 10 years ago
  99. 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 10 years ago
  100. df75fee #22508: Drop email __version__ string. It no longer means anything. by R David Murray · 10 years ago