summaryrefslogtreecommitdiffstats
path: root/Lib/trace.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2010-02-22 22:21:05 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2010-02-22 22:21:05 (GMT)
commit54e14f227d44aeefe86d59739ee377a1c06d5ca3 (patch)
treeb8a787595ee27b85f1e463cc3c818de150886a98 /Lib/trace.py
parent903fc0596297f9326c754008e20ec81fe6c2a786 (diff)
downloadcpython-54e14f227d44aeefe86d59739ee377a1c06d5ca3.zip
cpython-54e14f227d44aeefe86d59739ee377a1c06d5ca3.tar.gz
cpython-54e14f227d44aeefe86d59739ee377a1c06d5ca3.tar.bz2
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 ........
Diffstat (limited to 'Lib/trace.py')
-rw-r--r--Lib/trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py
index 9ce240f..e6316b6 100644
--- a/Lib/trace.py
+++ b/Lib/trace.py
@@ -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):