mirror of https://github.com/python/cpython.git
Merged revisions 78340 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r78340 | andrew.kuchling | 2010-02-22 17:16:58 -0500 (Mon, 22 Feb 2010) | 1 line #6666: fix bug in trace.py that applied the list of ignored dirs only to 1st file ........
This commit is contained in:
parent
903fc05962
commit
54e14f227d
|
@ -117,7 +117,7 @@ def __init__(self, modules = None, dirs = None):
|
|||
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):
|
||||
|
|
Loading…
Reference in New Issue