diff options
author | Guido van Rossum <guido@python.org> | 2008-01-15 17:59:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2008-01-15 17:59:29 (GMT) |
commit | cad3724352562a3a9b951b30c0b98b8f40c09dcf (patch) | |
tree | 8acd8d716d018d6fdb63ef298a638de4e4348d58 /Misc | |
parent | 7b1e917e419c234627a88319cc30d10844d12039 (diff) | |
download | cpython-cad3724352562a3a9b951b30c0b98b8f40c09dcf.zip cpython-cad3724352562a3a9b951b30c0b98b8f40c09dcf.tar.gz cpython-cad3724352562a3a9b951b30c0b98b8f40c09dcf.tar.bz2 |
Issue #1786 (by myself): pdb should use its own stdin/stdout around an
exec call and when creating a recursive instance.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -358,11 +358,15 @@ Core and builtins - Bug #1664966: Fix crash in exec if Unicode filename can't be decoded. -- Issue #1537: Changed GeneratorExit's base class from Exception to BaseException. +- Issue #1537: Changed GeneratorExit's base class from Exception to + BaseException. Library ------- +- Issue #1786: pdb should use its own stdin/stdout around an exec call + and when creating a recursive instance. + - Issue #1698398 Zipfile.printdir() crashed because the format string expected a tuple type of length six instead of time.struct_time object. |