From: Tarek Ziadé Date: Sun, 5 Apr 2009 21:49:36 +0000 (+0000) Subject: Merged revisions 71280 via svnmerge from X-Git-Tag: v3.1b1~372 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=889b0aa4506d5ea43985865a44562ebd39b3bf00;p=python Merged revisions 71280 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r71280 | tarek.ziade | 2009-04-05 23:44:08 +0200 (Sun, 05 Apr 2009) | 1 line Fixed #1491431: distutils.filelist.glob_to_re was broken for some edge cases (detailed in the test ........ --- diff --git a/Lib/distutils/filelist.py b/Lib/distutils/filelist.py index a80c71e8c7..58a2bfb108 100644 --- a/Lib/distutils/filelist.py +++ b/Lib/distutils/filelist.py @@ -289,7 +289,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'((?