summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-07 08:31:51 (GMT)
committerGeorg Brandl <georg@python.org>2007-03-07 08:31:51 (GMT)
commit71ff64674375b355c9449f8b511b49756d880e48 (patch)
tree5e38f0cbe2602c4fe59a935e830ef432ee51c785 /Misc
parent172e7257f65e5d37974aacf0c467e76a321ddf2c (diff)
downloadcpython-71ff64674375b355c9449f8b511b49756d880e48.zip
cpython-71ff64674375b355c9449f8b511b49756d880e48.tar.gz
cpython-71ff64674375b355c9449f8b511b49756d880e48.tar.bz2
Patch #1001604: glob.glob() now returns unicode filenames if it was
given a unicode argument and os.listdir() returns unicode filenames.
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 bb02909..362bd5b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -152,6 +152,9 @@ Core and builtins
Library
-------
+- Patch #1001604: glob.glob() now returns unicode filenames if it was
+ given a unicode argument and os.listdir() returns unicode filenames.
+
- Patch #1673619: setup.py identifies extension modules it doesn't know how
to build and those it knows how to build but that fail to build.