summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-06-01 21:28:37 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-06-01 21:28:37 (GMT)
commit24e581f7b2dbb700705c7b11c3982167ac68d4cb (patch)
tree8cc36814d81f3ad143bac22bb311ce49434995b7 /Misc
parent1172999627c912b57ace149183de4a313edc74d2 (diff)
downloadcpython-24e581f7b2dbb700705c7b11c3982167ac68d4cb.zip
cpython-24e581f7b2dbb700705c7b11c3982167ac68d4cb.tar.gz
cpython-24e581f7b2dbb700705c7b11c3982167ac68d4cb.tar.bz2
Merged revisions 73114 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73114 | amaury.forgeotdarc | 2009-06-01 22:53:18 +0200 (lun., 01 juin 2009) | 3 lines #4547: When debugging a very large function, it was not always possible to update the lineno attribute of the current frame. ........
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 570caea..6c39463 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1 Release Candidate 2?
Core and Builtins
-----------------
+- Issue #4547: When debugging a very large function, it was not always
+ possible to update the lineno attribute of the current frame.
+
- Issue #5330: C functions called with keyword arguments were not reported by
the various profiling modules (profile, cProfile). Patch by Hagen Fürstenau.