summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-12-21 21:16:19 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-12-21 21:16:19 (GMT)
commit2b7f69851d641e4bf48c762c9a23df5b51982a1f (patch)
tree6bfd2dce3c4aa7bbec313e1001e32b6842621a66 /Misc
parentc16dfe18376791b3118ef42d39a3afd25ac6e306 (diff)
parent17c93260a62ac895f336351158e6fdaa6b117bcb (diff)
downloadcpython-2b7f69851d641e4bf48c762c9a23df5b51982a1f.zip
cpython-2b7f69851d641e4bf48c762c9a23df5b51982a1f.tar.gz
cpython-2b7f69851d641e4bf48c762c9a23df5b51982a1f.tar.bz2
Issue #18879: When a method is looked up on a temporary file, avoid closing the file before the method is possibly called.
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 e2592eb..0f20974 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,9 @@ Core and Builtins
Library
-------
+- Issue #18879: When a method is looked up on a temporary file, avoid closing
+ the file before the method is possibly called.
+
- Issue #20037: Avoid crashes when opening a text file late at interpreter
shutdown.