summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_source_encoding.py
diff options
context:
space:
mode:
authorLysandros Nikolaou <lisandrosnik@gmail.com>2023-10-12 07:34:35 (GMT)
committerGitHub <noreply@github.com>2023-10-12 07:34:35 (GMT)
commit17d65547df55eaefe077c45242a7f2d175961dfd (patch)
tree008f24ce995cd5e0a88f35bba06c8ea7ad76f19b /Lib/test/test_source_encoding.py
parent23645420dcc4f3b7b2ec4045ef6ac126c37a98c2 (diff)
downloadcpython-17d65547df55eaefe077c45242a7f2d175961dfd.zip
cpython-17d65547df55eaefe077c45242a7f2d175961dfd.tar.gz
cpython-17d65547df55eaefe077c45242a7f2d175961dfd.tar.bz2
gh-104169: Fix test_peg_generator after tokenizer refactoring (#110727)
* Fix test_peg_generator after tokenizer refactoring * Remove references to tokenizer.c in comments etc.
Diffstat (limited to 'Lib/test/test_source_encoding.py')
-rw-r--r--Lib/test/test_source_encoding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_source_encoding.py b/Lib/test/test_source_encoding.py
index 2787137..61b0077 100644
--- a/Lib/test/test_source_encoding.py
+++ b/Lib/test/test_source_encoding.py
@@ -255,7 +255,7 @@ class UTF8ValidatorTest(unittest.TestCase):
def test_invalid_utf8(self):
# This is a port of test_utf8_decode_invalid_sequences in
# test_unicode.py to exercise the separate utf8 validator in
- # Parser/tokenizer.c used when reading source files.
+ # Parser/tokenizer/helpers.c used when reading source files.
# That file is written using low-level C file I/O, so the only way to
# test it is to write actual files to disk.