diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-01-04 22:11:23 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-01-04 22:11:23 (GMT) |
commit | b231b2be070a143b349ad90b11151bd4297c396a (patch) | |
tree | 47d4f0336296d8839f56377e118a04ef7b8af236 /Doc | |
parent | 57fcf76d73441bd766e3644875472e6b19791e02 (diff) | |
download | cpython-b231b2be070a143b349ad90b11151bd4297c396a.zip cpython-b231b2be070a143b349ad90b11151bd4297c396a.tar.gz cpython-b231b2be070a143b349ad90b11151bd4297c396a.tar.bz2 |
whatsnew: ppring string wrapping, string pickling optimization.
Also clarify some NEWS entries.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 40aa787..78d5841 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -847,6 +847,9 @@ pprint The :mod:`pprint` module now supports *compact* mode for formatting long sequences (:issue:`19132`). +Long strings are now wrapped using Python's normal line continuation +syntax (Contributed by Antoine Pitrou in :issue:`17150`.) + pty --- @@ -1259,6 +1262,10 @@ Significant Optimizations * :func:`random.getrandbits` is 20%-40% faster for small integers (the most common use case). (Contributed by Serhiy Storchaka in :issue:`16674`). +* By taking advantage of the new storage format for strings, pickling of + strings is now significantly faster. (Contributed by Victor Stinner and + Antoine Pitrou in :issue:`15596`.) + Deprecated |