diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-05-30 21:27:00 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-05-30 21:27:00 (GMT) |
commit | 46dbe27f7e7a053c9b44155664dc02aa12b0717e (patch) | |
tree | bd0ae24121dc36127136a4885b6b50f4778bef08 /Misc | |
parent | 2152ca390b80f9443997039bbbc55e19e9a2c6d8 (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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__. |