diff options
author | Barry Warsaw <barry@python.org> | 2012-11-20 20:22:51 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2012-11-20 20:22:51 (GMT) |
commit | 82c1c781c7ee6496bd4c404b7ba972eed5dbcb12 (patch) | |
tree | e487dc3ab171e765a0a272921fa0db38df43a596 /Misc | |
parent | 23089ab1db23333457149b567c125c10445550b6 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |