summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-10-12 20:51:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-10-12 20:51:21 (GMT)
commit04248a8d99e518e7e833a1e2de9e3a8c1a325245 (patch)
tree652372e86d2d672b00832b3820910e5351b28e9b /Misc
parentb0182c8ca5a98d2c61f44e87e9b5dc6e8b7a9f30 (diff)
downloadcpython-04248a8d99e518e7e833a1e2de9e3a8c1a325245.zip
cpython-04248a8d99e518e7e833a1e2de9e3a8c1a325245.tar.gz
cpython-04248a8d99e518e7e833a1e2de9e3a8c1a325245.tar.bz2
Issue #3873: Speed up unpickling from file objects which have a peek()
method.
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 597f76b..44b7b46 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #3873: Speed up unpickling from file objects which have a peek()
+ method.
+
- Issue #10075: Add a session_stats() method to SSLContext objects.
- Issue #9948: Fixed problem of losing filename case information.