summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/filelist.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-04-05 21:44:08 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-04-05 21:44:08 (GMT)
commitfaa6b121fb34f1c4db36f20b625ece0291396174 (patch)
tree71488e49d8e7d675f057410361ff876b1db428ba /Lib/distutils/filelist.py
parent91a3b9e4f08a5e1325642c68543495c32fc853f9 (diff)
downloadcpython-faa6b121fb34f1c4db36f20b625ece0291396174.zip
cpython-faa6b121fb34f1c4db36f20b625ece0291396174.tar.gz
cpython-faa6b121fb34f1c4db36f20b625ece0291396174.tar.bz2
Fixed #1491431: distutils.filelist.glob_to_re was broken for some edge cases (detailed in the test
Diffstat (limited to 'Lib/distutils/filelist.py')
-rw-r--r--Lib/distutils/filelist.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/distutils/filelist.py b/Lib/distutils/filelist.py
index 51a1d57..3ba5720 100644
--- a/Lib/distutils/filelist.py
+++ b/Lib/distutils/filelist.py
@@ -302,7 +302,7 @@ def findall (dir = os.curdir):
return list
-def glob_to_re (pattern):
+def glob_to_re(pattern):
"""Translate a shell-like glob pattern to a regular expression; return
a string containing the regex. Differs from 'fnmatch.translate()' in
that '*' does not match "special characters" (which are
@@ -317,7 +317,8 @@ def glob_to_re (pattern):
# character except the special characters.
# XXX currently the "special characters" are just slash -- i.e. this is
# Unix-only.
- pattern_re = re.sub(r'(^|[^\\])\.', r'\1[^/]', pattern_re)
+ pattern_re = re.sub(r'((?<!\\)(\\\\)*)\.', r'\1[^/]', pattern_re)
+
return pattern_re
# glob_to_re ()