Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
db848035
Commit
db848035
authored
Oct 20, 2011
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify calls in fnmatch.
parent
cd9fdfd6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Lib/fnmatch.py
Lib/fnmatch.py
+5
-5
No files found.
Lib/fnmatch.py
View file @
db848035
...
...
@@ -35,9 +35,9 @@ def fnmatch(name, pat):
pat
=
os
.
path
.
normcase
(
pat
)
return
fnmatchcase
(
name
,
pat
)
@
functools
.
lru_cache
(
maxsize
=
250
)
def
_compile_pattern
(
pat
,
is_bytes
=
False
):
if
is
_bytes
:
@
functools
.
lru_cache
(
maxsize
=
250
,
typed
=
True
)
def
_compile_pattern
(
pat
):
if
is
instance
(
pat
,
bytes
)
:
pat_str
=
str
(
pat
,
'ISO-8859-1'
)
res_str
=
translate
(
pat_str
)
res
=
bytes
(
res_str
,
'ISO-8859-1'
)
...
...
@@ -49,7 +49,7 @@ def filter(names, pat):
"""Return the subset of the list NAMES that match PAT."""
result
=
[]
pat
=
os
.
path
.
normcase
(
pat
)
match
=
_compile_pattern
(
pat
,
isinstance
(
pat
,
bytes
)
)
match
=
_compile_pattern
(
pat
)
if
os
.
path
is
posixpath
:
# normcase on posix is NOP. Optimize it away from the loop.
for
name
in
names
:
...
...
@@ -67,7 +67,7 @@ def fnmatchcase(name, pat):
This is a version of fnmatch() which doesn't case-normalize
its arguments.
"""
match
=
_compile_pattern
(
pat
,
isinstance
(
pat
,
bytes
)
)
match
=
_compile_pattern
(
pat
)
return
match
(
name
)
is
not
None
...
...
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