summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-09-06 20:46:58 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-09-06 20:46:58 (GMT)
commit5651eaa720e28fb95b78524524ee75bda2d0ae59 (patch)
treec42f7a20d5843ea95d527c150340d6aaa0fa69c3 /Misc
parent693fc4604f9dd251949638228e282a0c8757b4ca (diff)
downloadcpython-5651eaa720e28fb95b78524524ee75bda2d0ae59.zip
cpython-5651eaa720e28fb95b78524524ee75bda2d0ae59.tar.gz
cpython-5651eaa720e28fb95b78524524ee75bda2d0ae59.tar.bz2
Issue #3705: py3k aborts if "-c" or "-m" is given a non-ascii value.
Reviewed by Benjamin Peterson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cbbe447..a914ebe 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.0 release candidate 1
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.
+
- Issue #3279: Importing site at interpreter was failing silently because the
site module uses the open builtin which was not initialized at the time.