summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
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.