Commit 337d9c19 authored by Tarek Ziadé's avatar Tarek Ziadé

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
........
parent 443bc8fd
...@@ -304,7 +304,7 @@ def findall (dir = os.curdir): ...@@ -304,7 +304,7 @@ def findall (dir = os.curdir):
return list return list
def glob_to_re (pattern): def glob_to_re(pattern):
"""Translate a shell-like glob pattern to a regular expression; return """Translate a shell-like glob pattern to a regular expression; return
a string containing the regex. Differs from 'fnmatch.translate()' in a string containing the regex. Differs from 'fnmatch.translate()' in
that '*' does not match "special characters" (which are that '*' does not match "special characters" (which are
...@@ -319,7 +319,8 @@ def glob_to_re (pattern): ...@@ -319,7 +319,8 @@ def glob_to_re (pattern):
# character except the special characters. # character except the special characters.
# XXX currently the "special characters" are just slash -- i.e. this is # XXX currently the "special characters" are just slash -- i.e. this is
# Unix-only. # Unix-only.
pattern_re = re.sub(r'(^|[^\\])\.', r'\1[^/]', pattern_re) pattern_re = re.sub(r'((?<!\\)(\\\\)*)\.', r'\1[^/]', pattern_re)
return pattern_re return pattern_re
# glob_to_re () # glob_to_re ()
......
"""Tests for distutils.filelist."""
import unittest
from distutils.filelist import glob_to_re
class FileListTestCase(unittest.TestCase):
def test_glob_to_re(self):
# simple cases
self.assertEquals(glob_to_re('foo*'), 'foo[^/]*$')
self.assertEquals(glob_to_re('foo?'), 'foo[^/]$')
self.assertEquals(glob_to_re('foo??'), 'foo[^/][^/]$')
# special cases
self.assertEquals(glob_to_re(r'foo\\*'), r'foo\\\\[^/]*$')
self.assertEquals(glob_to_re(r'foo\\\*'), r'foo\\\\\\[^/]*$')
self.assertEquals(glob_to_re('foo????'), r'foo[^/][^/][^/][^/]$')
self.assertEquals(glob_to_re(r'foo\\??'), r'foo\\\\[^/][^/]$')
def test_suite():
return unittest.makeSuite(FileListTestCase)
if __name__ == "__main__":
unittest.main(defaultTest="test_suite")
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment