summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-04-28 11:07:06 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-04-28 11:07:06 (GMT)
commit871dfc41d37b02a7af6eb03028edc6702f24fd1d (patch)
treea790ec67f992917b9c1cad2fc654105d77a5c5bb /Misc
parent94ba146d11869288ab3def8c7426b3b36701416a (diff)
downloadcpython-871dfc41d37b02a7af6eb03028edc6702f24fd1d.zip
cpython-871dfc41d37b02a7af6eb03028edc6702f24fd1d.tar.gz
cpython-871dfc41d37b02a7af6eb03028edc6702f24fd1d.tar.bz2
Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e3c8810..856520f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,9 @@ Core and Builtins
Library
-------
+- Issue #13204: Calling sys.flags.__new__ would crash the interpreter,
+ now it raises a TypeError.
+
- Issue #19385: Make operations on a closed dbm.dumb database always raise the
same exception.