diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-24 22:21:52 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-24 22:21:52 (GMT) |
commit | cc0bbbc781254cc43628649815435ababafa35e2 (patch) | |
tree | 30d66f42f696052e68a45ada7696b93c29361fd7 /Misc | |
parent | 51f58059f6d5eb958201d1d90286e5917b77ed59 (diff) | |
parent | 4403d7def0ec8e6b395223fb2ab8b570ecc7a6e4 (diff) | |
download | cpython-cc0bbbc781254cc43628649815435ababafa35e2.zip cpython-cc0bbbc781254cc43628649815435ababafa35e2.tar.gz cpython-cc0bbbc781254cc43628649815435ababafa35e2.tar.bz2 |
(Merge 3.4) Issue #9246: On POSIX, os.getcwd() now supports paths longer than
1025 bytes. Patch written by William Orr.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -15,6 +15,9 @@ Core and Builtins Library ------- +- Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytes. + Patch written by William Orr. + - Issue #17445: add difflib.diff_bytes() to support comparison of byte strings (fixes a regression from Python 2). @@ -33,7 +36,7 @@ Library - Issue #23728: binascii.crc_hqx() could return an integer outside of the range 0-0xffff for empty data. -- Issue #23887: urllib.error.HTTPError now has a proper repr() representation. +- Issue #23887: urllib.error.HTTPError now has a proper repr() representation. Patch by Berker Peksag. Documentation |