summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-30 21:27:00 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-30 21:27:00 (GMT)
commit46dbe27f7e7a053c9b44155664dc02aa12b0717e (patch)
treebd0ae24121dc36127136a4885b6b50f4778bef08 /Misc/NEWS
parent2152ca390b80f9443997039bbbc55e19e9a2c6d8 (diff)
downloadcpython-46dbe27f7e7a053c9b44155664dc02aa12b0717e.zip
cpython-46dbe27f7e7a053c9b44155664dc02aa12b0717e.tar.gz
cpython-46dbe27f7e7a053c9b44155664dc02aa12b0717e.tar.bz2
Issue #5330: C functions called with keyword arguments were not reported by
the various profiling modules (profile, cProfile). Patch by Hagen Fürstenau.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 73ddbe7..6eb1c34 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
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 #5982: staticmethod and classmethod now expose the wrapped
function with __func__.