summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/fnmatch.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/Lib/fnmatch.py b/Lib/fnmatch.py
index c40f500..182a9ef 100644
--- a/Lib/fnmatch.py
+++ b/Lib/fnmatch.py
@@ -75,17 +75,13 @@ def translate(pat):
if j >= n:
res = res + '\\['
else:
- stuff = pat[i:j]
+ stuff = pat[i:j].replace('\\','\\\\')
i = j+1
if stuff[0] == '!':
- stuff = '[^' + stuff[1:] + ']'
- elif stuff == '^'*len(stuff):
- stuff = '\\^'
- else:
- while stuff[0] == '^':
- stuff = stuff[1:] + stuff[0]
- stuff = '[' + stuff + ']'
- res = res + stuff
+ stuff = '^' + stuff[1:]
+ elif stuff[0] == '^':
+ stuff = '\\' + stuff
+ res = '%s[%s]' % (res, stuff)
else:
res = res + re.escape(c)
return res + "$"