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
commit46dbe27f7e7a053c9b44155664dc02aa12b0717e (patch)
treebd0ae24121dc36127136a4885b6b50f4778bef08 /Lib/test/test_cprofile.py
parent2152ca390b80f9443997039bbbc55e19e9a2c6d8 (diff)
downloadcpython-git-46dbe27f7e7a053c9b44155664dc02aa12b0717e.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):