summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-04-10 21:03:09 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-04-10 21:03:09 (GMT)
commit7fedbe513d5ccc735d36e1da9781fcab1ca5961e (patch)
tree4804f341532dc1fbad96204105208ad72de496a9 /Misc
parent78520009289a49e7e36338c4f0c16c9f09cb10f4 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index beed5cb..40de496 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.