diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-08-17 21:35:46 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-08-17 21:35:46 (GMT) |
commit | 74c23ac08dda58f08b78f195151949525087f431 (patch) | |
tree | 372e4a64068ef5e5fd72fb561ffb624f6892a617 /Lib/distutils/filelist.py | |
parent | 8c6b0a5bcb2cfb0cd9e67bcfca4ee23297cd75f9 (diff) | |
download | cpython-74c23ac08dda58f08b78f195151949525087f431.zip cpython-74c23ac08dda58f08b78f195151949525087f431.tar.gz cpython-74c23ac08dda58f08b78f195151949525087f431.tar.bz2 |
Merged revisions 74493 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74493 | tarek.ziade | 2009-08-17 23:28:34 +0200 (Mon, 17 Aug 2009) | 1 line
fixed how fnmatch.translate is used (since it has changed in r74475 for #6665). Now the code is not harcoding the usage of $ anymore
........
Diffstat (limited to 'Lib/distutils/filelist.py')
-rw-r--r-- | Lib/distutils/filelist.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/distutils/filelist.py b/Lib/distutils/filelist.py index 58a2bfb..06a8da9 100644 --- a/Lib/distutils/filelist.py +++ b/Lib/distutils/filelist.py @@ -312,7 +312,9 @@ def translate_pattern(pattern, anchor=1, prefix=None, is_regex=0): pattern_re = '' if prefix is not None: - prefix_re = (glob_to_re(prefix))[0:-1] # ditch trailing $ + # ditch end of pattern character + empty_pattern = glob_to_re('') + prefix_re = (glob_to_re(prefix))[:-len(empty_pattern)] pattern_re = "^" + os.path.join(prefix_re, ".*" + pattern_re) else: # no prefix -- respect anchor flag if anchor: |