Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
a8e0178c
Commit
a8e0178c
authored
Apr 05, 2009
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed #1491431: distutils.filelist.glob_to_re was broken for some edge cases (detailed in the test
parent
528d035a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
filelist.py
filelist.py
+3
-2
tests/test_filelist.py
tests/test_filelist.py
+23
-0
No files found.
filelist.py
View file @
a8e0178c
...
...
@@ -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 ()
...
...
tests/test_filelist.py
0 → 100644
View file @
a8e0178c
"""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")
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment