summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-09-29 22:09:07 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-09-29 22:09:07 (GMT)
commite563aa4383df36cefe5c85c2a85b9008f54df048 (patch)
tree865ead147f288507d8963abce4a5f310c705cab5 /Misc/NEWS
parente1448730716ee5c62d7290f8cfb4d94ad3f440df (diff)
downloadcpython-e563aa4383df36cefe5c85c2a85b9008f54df048.zip
cpython-e563aa4383df36cefe5c85c2a85b9008f54df048.tar.gz
cpython-e563aa4383df36cefe5c85c2a85b9008f54df048.tar.bz2
Issue #3965: Allow repeated calls to turtle.Screen, by making it a
true singleton object. Reviewed by Gregor Lingl.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 466160f..bbbeb91 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,9 @@ Core and Builtins
Library
-------
+- Issue #3965: Allow repeated calls to turtle.Screen, by making it a
+ true singleton object.
+
- Issue #3895: It was possible to crash the interpreter when an external timer
was used with cProfile that returned an object that could not be converted
into a float.