Commit 533a167a authored by Alexander Belopolsky's avatar Alexander Belopolsky

Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli

Bendersky for the patch.
parent d21886ce
......@@ -257,7 +257,8 @@ class CoverageResults:
if self.calledfuncs:
print()
print("functions called:")
for filename, modulename, funcname in sorted(calls.keys()):
calls = self.calledfuncs.keys()
for filename, modulename, funcname in sorted(calls):
print(("filename: %s, modulename: %s, funcname: %s"
% (filename, modulename, funcname)))
......
......@@ -63,6 +63,7 @@ Reimer Behrends
Ben Bell
Thomas Bellman
Alexander Belopolsky
Eli Bendersky
Andrew Bennetts
Andy Bensky
Michel Van den Bergh
......
......@@ -473,6 +473,9 @@ C-API
Library
-------
- Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli
Bendersky for the patch.
- Issue #3704: http.cookiejar was not properly handling URLs with a / in the
parameters.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment