diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-12 00:20:45 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-12 00:20:45 (GMT) |
commit | 8f0ffe587b5287dcac727cad3b8078aa1d85c07d (patch) | |
tree | c710a4095a961bc8bfc4a0cea6f9787041b597d3 /Lib/distutils | |
parent | 599d76b2754f5391abb0aadae96a444065e52b5c (diff) | |
download | cpython-8f0ffe587b5287dcac727cad3b8078aa1d85c07d.zip cpython-8f0ffe587b5287dcac727cad3b8078aa1d85c07d.tar.gz cpython-8f0ffe587b5287dcac727cad3b8078aa1d85c07d.tar.bz2 |
Issue #13193: fix distutils.filelist.FileList under Windows
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/filelist.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/distutils/filelist.py b/Lib/distutils/filelist.py index a94b5c8..87b2cc6 100644 --- a/Lib/distutils/filelist.py +++ b/Lib/distutils/filelist.py @@ -313,7 +313,10 @@ def translate_pattern(pattern, anchor=1, prefix=None, is_regex=0): # 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) + # match both path separators, as in Postel's principle + sep_pat = "[" + re.escape(os.path.sep + os.path.altsep + if os.path.altsep else os.path.sep) + "]" + pattern_re = "^" + sep_pat.join([prefix_re, ".*" + pattern_re]) else: # no prefix -- respect anchor flag if anchor: pattern_re = "^" + pattern_re |