mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Fix buggy RE “\parrot_example.py”, uncovered by Issue #27030
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user