merge #11873: another try at fixing the regex, courtesy of Victor Stinner

This commit is contained in:
R David Murray 2011-07-01 14:57:00 -04:00
commit 7ae4448ed2
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ class CommandLineTests(unittest.TestCase):
self.assertEqual(b'', quiet)
def test_regexp(self):
self.assertRunOK('-q', '-x', r'ba[^\/]*$', self.pkgdir)
self.assertRunOK('-q', '-x', r'ba[^\\/]*$', self.pkgdir)
self.assertNotCompiled(self.barfn)
self.assertCompiled(self.initfn)