summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2012-11-20 20:22:51 (GMT)
committerBarry Warsaw <barry@python.org>2012-11-20 20:22:51 (GMT)
commit82c1c781c7ee6496bd4c404b7ba972eed5dbcb12 (patch)
treee487dc3ab171e765a0a272921fa0db38df43a596 /Misc
parent23089ab1db23333457149b567c125c10445550b6 (diff)
downloadcpython-82c1c781c7ee6496bd4c404b7ba972eed5dbcb12.zip
cpython-82c1c781c7ee6496bd4c404b7ba972eed5dbcb12.tar.gz
cpython-82c1c781c7ee6496bd4c404b7ba972eed5dbcb12.tar.bz2
- Issue #16514: Fix regression causing a traceback when sys.path[0] is None
(actually, any non-string or non-bytes type).
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 9771ecd..4893a94 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
+- Issue #16514: Fix regression causing a traceback when sys.path[0] is None
+ (actually, any non-string or non-bytes type).
+
- Issue #16306: Fix multiple error messages when unknown command line
parameters where passed to the interpreter. Patch by Hieu Nguyen.