From d4704803b95efea847cd0a9065818d771c9941fb Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Sun, 12 Jun 2016 06:07:35 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20buggy=20RE=20=E2=80=9C\parrot=5Fexample.p?= =?UTF-8?q?y=E2=80=9D,=20uncovered=20by=20Issue=20#27030?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lib/lib2to3/tests/test_refactor.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/lib2to3/tests/test_refactor.py b/Lib/lib2to3/tests/test_refactor.py index f30c1e86309..856300153dd 100644 --- a/Lib/lib2to3/tests/test_refactor.py +++ b/Lib/lib2to3/tests/test_refactor.py @@ -9,6 +9,7 @@ import os import codecs import operator import io +import re import tempfile import shutil import unittest @@ -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.assertRegex(message, message_regex)