Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
533a167a
Commit
533a167a
authored
Jul 20, 2010
by
Alexander Belopolsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli
Bendersky for the patch.
parent
d21886ce
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
Lib/trace.py
Lib/trace.py
+2
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/trace.py
View file @
533a167a
...
...
@@ -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
)))
...
...
Misc/ACKS
View file @
533a167a
...
...
@@ -63,6 +63,7 @@ Reimer Behrends
Ben Bell
Thomas Bellman
Alexander Belopolsky
Eli Bendersky
Andrew Bennetts
Andy Bensky
Michel Van den Bergh
...
...
Misc/NEWS
View file @
533a167a
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment