summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-09 07:04:36 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-09 07:04:36 (GMT)
commit14b785192bb2b83b7826e9c0374c6d63e63f0f04 (patch)
tree0ed4b81db98e6900b22f71f9fe2763c080084b24 /Misc
parentf7bfcfbb68d71611e7ffae3de7b425c68433f59a (diff)
downloadcpython-14b785192bb2b83b7826e9c0374c6d63e63f0f04.zip
cpython-14b785192bb2b83b7826e9c0374c6d63e63f0f04.tar.gz
cpython-14b785192bb2b83b7826e9c0374c6d63e63f0f04.tar.bz2
#3705: Fix crash when given a non-ascii value on the command line for the "-c" and "-m" parameters
Second part, for Windows. Reviewed by Antoine Pitrou
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 1 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1dd15d6..5eaf640 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,8 +13,7 @@ Core and Builtins
-----------------
- Issue #3705: fix crash when given a non-ascii value on the command line for
- the "-c" and "-m" parameters. Now the behaviour is as expected under Linux,
- although under Windows it fails at a later point.
+ the "-c" and "-m" parameters.
- Issue #3279: Importing site at interpreter was failing silently because the
site module uses the open builtin which was not initialized at the time.