commit | 55e5e27b748443e41617bbd27c413b6af709df62 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Jul 28 23:56:38 2011 -0700 |
committer | Raymond Hettinger <python@rcn.com> | Thu Jul 28 23:56:38 2011 -0700 |
tree | 6d8121abc7e3b9c1bb6833f2a6905477d0be31d9 | |
parent | 4af1c6a4fcd6557265e972a6c35d39a3b1604d6e [diff] [blame] |
Issue 12514: Use try/finally to assure that timeit restores GC when done.
diff --git a/Misc/NEWS b/Misc/NEWS index e3c404f..de2cff5 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -39,6 +39,9 @@ - Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime. +- Issue #12514: Use try/finally to assure the timeit module restores garbage + collections when it is done. + - Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is given as a low fd, it gets overwritten.