Kaydet (Commit) e1f9bebd authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

#6666: fix bug in trace.py that applied the list of ignored dirs only to 1st file

üst 561d5aa4
......@@ -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):
......
......@@ -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.
......
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