commit | cdbc131f0370f6e3712d4167ba987d5e6b7f2802 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Thu Jun 06 09:52:49 2002 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Thu Jun 06 09:52:49 2002 +0000 |
tree | 4d7eed32a5c150164e67a9800e60a807c8959ac4 | |
parent | 294bbf3a59255119cc4de3f85762ce47cd1d09e3 [diff] [blame] |
Patch #551911: Escape . properly.
diff --git a/Lib/test/test_commands.py b/Lib/test/test_commands.py index aadd419..cf87fd4 100644 --- a/Lib/test/test_commands.py +++ b/Lib/test/test_commands.py
@@ -38,7 +38,7 @@ # be named anything. \s+\d+ # It has a size. [^/]* # Skip the date. - /. # and end with the name of the file. + /\. # and end with the name of the file. ''' self.assert_(re.match(pat, getstatus("/."), re.VERBOSE))