summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-03-23 19:30:39 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-03-23 19:30:39 (GMT)
commit64c16c3311d6ef8077498096e8874756477027de (patch)
treeba260cf3e542da7d488e71e472893b63050a3181 /Misc
parent4a8ea9e2a6d07bb069419274fb4dd75cfb6e3e55 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1ee9c8b..27dc328 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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