From: Martin Panter Date: Sun, 12 Jun 2016 06:07:35 +0000 (+0000) Subject: Fix buggy RE “\parrot_example.py”, uncovered by Issue #27030 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93f815a50cc00e20a411491894307f695e000974;p=python Fix buggy RE “\parrot_example.py”, uncovered by Issue #27030 --- diff --git a/Lib/lib2to3/tests/test_refactor.py b/Lib/lib2to3/tests/test_refactor.py index 7fc84e2530..c737aa5f4e 100644 --- a/Lib/lib2to3/tests/test_refactor.py +++ b/Lib/lib2to3/tests/test_refactor.py @@ -8,6 +8,7 @@ import sys import os import codecs import operator +import re import StringIO import tempfile import shutil @@ -226,8 +227,8 @@ from __future__ import print_function""" actually_write=False) # Testing that it logged this message when write=False was passed is # sufficient to see that it did not bail early after "No changes". - message_regex = r"Not writing changes to .*%s%s" % ( - os.sep, os.path.basename(test_file)) + message_regex = r"Not writing changes to .*%s" % \ + re.escape(os.sep + os.path.basename(test_file)) for message in debug_messages: if "Not writing changes" in message: self.assertRegexpMatches(message, message_regex)