summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-03-04 00:10:12 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-03-04 00:10:12 (GMT)
commit56a5153e21666792c6487fc98ce100fe6c51ebb3 (patch)
tree5e2daef794e6ddab2d8432cbe0321901f6440e98 /Misc
parent71fb87e64c51627564262fd64299f7ac79625404 (diff)
downloadcpython-56a5153e21666792c6487fc98ce100fe6c51ebb3.zip
cpython-56a5153e21666792c6487fc98ce100fe6c51ebb3.tar.gz
cpython-56a5153e21666792c6487fc98ce100fe6c51ebb3.tar.bz2
Issue #7494: fix a crash in _lsprof (cProfile) after clearing the profiler,
reset also the pointer to the current pointer context.
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 cfdd364..fb45e5a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,9 @@ Core and Builtins
Library
-------
+- Issue #7494: fix a crash in _lsprof (cProfile) after clearing the profiler,
+ reset also the pointer to the current pointer context.
+
- Issue #7232: Add support for the context manager protocol to the TarFile
class.