summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-05-04 05:28:39 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-05-04 05:28:39 (GMT)
commit406d7aaee76a3c0942b5b84a8c689afc2a06f960 (patch)
tree09b50b85f4ab06c1490ae1d092101aecb8d138a5 /Misc
parenteeb51a99c5a59534deae3f5f50ef80de270c505b (diff)
downloadcpython-406d7aaee76a3c0942b5b84a8c689afc2a06f960.zip
cpython-406d7aaee76a3c0942b5b84a8c689afc2a06f960.tar.gz
cpython-406d7aaee76a3c0942b5b84a8c689afc2a06f960.tar.bz2
Issue #5913: os.listdir() should fail for empty path on windows.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e372a62..6b7a94d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -266,6 +266,8 @@ Core and Builtins
Library
-------
+- Issue #5913: os.listdir() should fail for empty path on windows.
+
- Issue #5084: unpickling now interns the attribute names of pickled objects,
saving memory and avoiding growth in size of subsequent pickles. Proposal
and original patch by Jake McGuire.