diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-03-23 19:30:39 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-03-23 19:30:39 (GMT) |
commit | 64c16c3311d6ef8077498096e8874756477027de (patch) | |
tree | ba260cf3e542da7d488e71e472893b63050a3181 /Misc | |
parent | 4a8ea9e2a6d07bb069419274fb4dd75cfb6e3e55 (diff) | |
download | cpython-64c16c3311d6ef8077498096e8874756477027de.zip cpython-64c16c3311d6ef8077498096e8874756477027de.tar.gz cpython-64c16c3311d6ef8077498096e8874756477027de.tar.bz2 |
Issue #17150: pprint now uses line continuations to wrap long string literals.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -294,6 +294,9 @@ Core and Builtins Library ------- +- Issue #17150: pprint now uses line continuations to wrap long string + literals. + - Issue #17488: Change the subprocess.Popen bufsize parameter default value from unbuffered (0) to buffering (-1) to match the behavior existing code expects and match the behavior of the subprocess module in Python 2 to avoid |