summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-06-16 05:42:57 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-06-16 05:42:57 (GMT)
commit52e155e31bd6801b322420c9d95defd56cb5ca47 (patch)
tree7499e2c13e7347b4bb988a226f9916932813fd71 /Misc
parenta7259597f1f9ef389012010d7b8a02ebcf7396e7 (diff)
downloadcpython-52e155e31bd6801b322420c9d95defd56cb5ca47.zip
cpython-52e155e31bd6801b322420c9d95defd56cb5ca47.tar.gz
cpython-52e155e31bd6801b322420c9d95defd56cb5ca47.tar.bz2
Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup.
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 2bf6be4..bfbcc5f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -126,6 +126,9 @@ Core
faster now. Thanks to Christian Tismer for pointing out the cause and
the nature of an effective cure (last December! better late than never).
+- repr() is much faster for large containers (dict, list, tuple).
+
+
Library
- A new function fnmatch.filter to filter lists of file names was added.