summaryrefslogtreecommitdiff
path: root/Lib/test/test_cprofile.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-30 21:27:00 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-30 21:27:00 +0000
commit7321b35b4cb954eb55e251ca8202e62cdacfaea7 (patch)
tree586b3bf2986ad6b73bc4453d1271c9196a5d5ec9 /Lib/test/test_cprofile.py
parent8e03fe5a0b73ee95cce14aa22b54ea06426c5c70 (diff)
downloadcpython-7321b35b4cb954eb55e251ca8202e62cdacfaea7.tar.gz
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 'Lib/test/test_cprofile.py')
-rwxr-xr-xLib/test/test_cprofile.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_cprofile.py b/Lib/test/test_cprofile.py
index 13c1060118..831895c389 100755
--- a/Lib/test/test_cprofile.py
+++ b/Lib/test/test_cprofile.py
@@ -9,6 +9,7 @@ from test.test_profile import ProfileTest, regenerate_expected_output
class CProfileTest(ProfileTest):
profilerclass = cProfile.Profile
+ expected_list_sort_output = "{method 'sort' of 'list' objects}"
# Issue 3895.
def test_bad_counter_during_dealloc(self):