diff options
author | Skip Montanaro <skip@pobox.com> | 2007-02-11 18:41:56 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2007-02-11 18:41:56 +0000 |
commit | 4a67a6741660d32a31ed74b5c4b981553cd7be41 (patch) | |
tree | eb855e678982d3502de5bac46a6db45f897e406e | |
parent | d84f68b10f0584d8bbe54dfeb40b0c1a8599e6a1 (diff) | |
download | cpython-git-4a67a6741660d32a31ed74b5c4b981553cd7be41.tar.gz |
backport: fix trace.py --ignore-dir
-rw-r--r-- | Lib/trace.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index 35edac2eea..364e3f7bc9 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 @@ -169,6 +169,9 @@ Extension Modules Library ------- +- Patch 1571379: Make trace's --ignore-dir facility work in the face of + relative directory names. + - Bug #1600860: Search for shared python library in LIBDIR, not lib/python/config, on "linux" and "gnu" systems. |