summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2010-02-22 22:16:58 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2010-02-22 22:16:58 (GMT)
commite1f9bebd991bc8aff0f4f1ca8774b029eb875584 (patch)
tree8967f4d4b6b25a3bd5773b9e637f5a282b209356
parent561d5aa47f78198a12ff197e0daff55680547d46 (diff)
downloadcpython-e1f9bebd991bc8aff0f4f1ca8774b029eb875584.zip
cpython-e1f9bebd991bc8aff0f4f1ca8774b029eb875584.tar.gz
cpython-e1f9bebd991bc8aff0f4f1ca8774b029eb875584.tar.bz2
#6666: fix bug in trace.py that applied the list of ignored dirs only to 1st file
-rw-r--r--Lib/trace.py2
-rw-r--r--Misc/NEWS3
2 files changed, 4 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):
diff --git a/Misc/NEWS b/Misc/NEWS
index 7cbe87a..3a2c963 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.