diff options
author | Victor Stinner <vstinner@python.org> | 2023-11-10 09:32:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 09:32:06 (GMT) |
commit | 5f42a2bc4017f2ed023f9cf19fdbffabd57527f5 (patch) | |
tree | 5e1e7863889a671858af60cf2a0ac78330395045 | |
parent | 95141aa7155afe3c98d6cbe0c8eb425a15d54b23 (diff) | |
download | cpython-5f42a2bc4017f2ed023f9cf19fdbffabd57527f5.zip cpython-5f42a2bc4017f2ed023f9cf19fdbffabd57527f5.tar.gz cpython-5f42a2bc4017f2ed023f9cf19fdbffabd57527f5.tar.bz2 |
gh-111929: Fix regrtest --pgo: test_str => test_unicode (#111938)
test_unicode was renamed to test_str in Python 3.13, but Python 3.12
still uses test_unicode name.
-rw-r--r-- | Lib/test/libregrtest/pgo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/pgo.py b/Lib/test/libregrtest/pgo.py index e3a6927..cabbba7 100644 --- a/Lib/test/libregrtest/pgo.py +++ b/Lib/test/libregrtest/pgo.py @@ -42,10 +42,10 @@ PGO_TESTS = [ 'test_set', 'test_sqlite3', 'test_statistics', - 'test_str', 'test_struct', 'test_tabnanny', 'test_time', + 'test_unicode', 'test_xml_etree', 'test_xml_etree_c', ] |