summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-10-30 23:03:32 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-10-30 23:03:32 (GMT)
commitdd8059f0781d5af09b25ee5a0683c16cf5ff4d2a (patch)
tree9bf572acd447a20f60e2729fcab9fe25b8ad5f94 /Misc
parente329d1af1351a3f4b29ba0437e9220f70c29a390 (diff)
downloadcpython-dd8059f0781d5af09b25ee5a0683c16cf5ff4d2a.zip
cpython-dd8059f0781d5af09b25ee5a0683c16cf5ff4d2a.tar.gz
cpython-dd8059f0781d5af09b25ee5a0683c16cf5ff4d2a.tar.bz2
#3626: On cygwin, starting "python z" would not display any error message:
printf("%ls") fails if the wide string is 1 char long :-(
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b06e4b6..6d61192 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,10 +15,13 @@ What's New in Python 3.0 beta 5
Core and Builtins
-----------------
+- Issue #3626: On cygwin, starting python with a non-existent script name
+ would not display anything if the file name is only 1 character long.
+
- Issue #4176: Fixed a crash when pickling an object which ``__reduce__``
method does not return iterators for the 4th and 5th items.
-- Issue 3723: Fixed initialization of subinterpreters.
+- Issue #3723: Fixed initialization of subinterpreters.
- Issue #4213: The file system encoding is now normalized by the
codec subsystem, for example UTF-8 is turned into utf-8.