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
e1f9bebd
Commit
e1f9bebd
authored
Feb 22, 2010
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#6666: fix bug in trace.py that applied the list of ignored dirs only to 1st file
parent
561d5aa4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Lib/trace.py
Lib/trace.py
+1
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/trace.py
View file @
e1f9bebd
...
...
@@ -117,7 +117,7 @@ class Ignore:
self._mods = modules or []
self._dirs = dirs or []
self._dirs =
map(os.path.normpath, self._dirs
)
self._dirs =
list(map(os.path.normpath, self._dirs)
)
self._ignore = { '
<
string
>
': 1 }
def names(self, filename, modulename):
...
...
Misc/NEWS
View file @
e1f9bebd
...
...
@@ -250,6 +250,9 @@ C-API
Library
-------
- Issue #6666: fix bug in trace.py that applied the list of directories
to be ignored only to the first file. Noted by Bogdan Opanchuk.
- Issue #7597: curses.use_env() can now be called before initscr().
Noted by Kan-Ru Chen.
...
...
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