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: ...@@ -257,7 +257,8 @@ class CoverageResults:
if self.calledfuncs: if self.calledfuncs:
print() print()
print("functions called:") 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" print(("filename: %s, modulename: %s, funcname: %s"
% (filename, modulename, funcname))) % (filename, modulename, funcname)))
......
...@@ -63,6 +63,7 @@ Reimer Behrends ...@@ -63,6 +63,7 @@ Reimer Behrends
Ben Bell Ben Bell
Thomas Bellman Thomas Bellman
Alexander Belopolsky Alexander Belopolsky
Eli Bendersky
Andrew Bennetts Andrew Bennetts
Andy Bensky Andy Bensky
Michel Van den Bergh Michel Van den Bergh
......
...@@ -473,6 +473,9 @@ C-API ...@@ -473,6 +473,9 @@ C-API
Library 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 - Issue #3704: http.cookiejar was not properly handling URLs with a / in the
parameters. 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