summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2007-02-11 18:41:56 (GMT)
committerSkip Montanaro <skip@pobox.com>2007-02-11 18:41:56 (GMT)
commit4a67a6741660d32a31ed74b5c4b981553cd7be41 (patch)
treeeb855e678982d3502de5bac46a6db45f897e406e /Lib
parentd84f68b10f0584d8bbe54dfeb40b0c1a8599e6a1 (diff)
downloadcpython-4a67a6741660d32a31ed74b5c4b981553cd7be41.zip
cpython-4a67a6741660d32a31ed74b5c4b981553cd7be41.tar.gz
cpython-4a67a6741660d32a31ed74b5c4b981553cd7be41.tar.bz2
backport: fix trace.py --ignore-dir
Diffstat (limited to 'Lib')
-rw-r--r--Lib/trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py
index 35edac2..364e3f7 100644
--- a/Lib/trace.py
+++ b/Lib/trace.py
@@ -587,7 +587,7 @@ class Trace:
"""
if why == 'call':
code = frame.f_code
- filename = code.co_filename
+ filename = frame.f_globals.get('__file__', None)
if filename:
# XXX modname() doesn't work right for packages, so
# the ignore support won't work right for packages