summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-10-12 22:42:37 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-10-12 22:42:37 (GMT)
commit11b1f3dac14f72d7406c96fd7b749ebd8cc16bc9 (patch)
tree1642e84db379e48086122a4a2bedeb94e4475d21 /Misc
parent06bca9a24bfd8976a66a91cb2d09bf57c0767ea5 (diff)
downloadcpython-11b1f3dac14f72d7406c96fd7b749ebd8cc16bc9.zip
cpython-11b1f3dac14f72d7406c96fd7b749ebd8cc16bc9.tar.gz
cpython-11b1f3dac14f72d7406c96fd7b749ebd8cc16bc9.tar.bz2
NEWS: Move #6612 to Library section
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a397539..8ff3f3b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,12 +10,12 @@ What's New in Python 3.2 Beta 1?
Core and Builtins
-----------------
-- Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the
- current directory was deleted. Patch written by W. Trevor King.
-
Library
-------
+- Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the
+ current directory was deleted. Patch written by W. Trevor King.
+
- Issue #3873: Speed up unpickling from file objects which have a peek()
method.