summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-30 21:43:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-30 21:43:48 (GMT)
commit6987d541160ae69f896d0344f47230cbb12914e4 (patch)
tree28d9a025e4912f35c5edde16f89deb49d5d32f2e /Misc
parent7e9d75a91d0127bbe2deb9f03f23895a9d77d19d (diff)
downloadcpython-6987d541160ae69f896d0344f47230cbb12914e4.zip
cpython-6987d541160ae69f896d0344f47230cbb12914e4.tar.gz
cpython-6987d541160ae69f896d0344f47230cbb12914e4.tar.bz2
Merged revisions 73064-73065 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73064 | antoine.pitrou | 2009-05-30 23:27:00 +0200 (sam., 30 mai 2009) | 4 lines Issue #5330: C functions called with keyword arguments were not reported by the various profiling modules (profile, cProfile). Patch by Hagen Fürstenau. ........ r73065 | antoine.pitrou | 2009-05-30 23:39:25 +0200 (sam., 30 mai 2009) | 3 lines The test for #5330 wasn't correct. ........
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 79d7f0e..6dcf1d8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6.3
Core and Builtins
-----------------
+- Issue #5330: C functions called with keyword arguments were not reported by
+ the various profiling modules (profile, cProfile). Patch by Hagen F�rstenau.
+
- Issue #6089: str.format can raise SystemError with certain invalid
field specifiers.