diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-04-10 21:03:09 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-04-10 21:03:09 (GMT) |
commit | 7fedbe513d5ccc735d36e1da9781fcab1ca5961e (patch) | |
tree | 4804f341532dc1fbad96204105208ad72de496a9 /Misc | |
parent | 78520009289a49e7e36338c4f0c16c9f09cb10f4 (diff) | |
download | cpython-7fedbe513d5ccc735d36e1da9781fcab1ca5961e.zip cpython-7fedbe513d5ccc735d36e1da9781fcab1ca5961e.tar.gz cpython-7fedbe513d5ccc735d36e1da9781fcab1ca5961e.tar.bz2 |
Add a NEWS entry for issue2221.
Also don't flush stdout on each call to exec() or eval().
Only interactive input really needs it.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 3.0a5? Core and Builtins ----------------- +- Issue #2221: Corrected a SystemError "error return without exception set", + when the code executed by exec() raises an exception, and sys.stdout.flush() + also raises an error. + - Bug #2565: The repr() of type objects now calls them 'class', not 'type' - whether they are builtin types or not. |