diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-07 11:47:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 11:47:23 (GMT) |
commit | 4e605666b08b8f863cbbbdaa34bb06988e648d26 (patch) | |
tree | f6b2f1369c1d634b3bf9cc8b59ec7ffc9edd91e0 /Misc | |
parent | 3f2c433da560d7999a52f9fcba4bbd0898848520 (diff) | |
download | cpython-4e605666b08b8f863cbbbdaa34bb06988e648d26.zip cpython-4e605666b08b8f863cbbbdaa34bb06988e648d26.tar.gz cpython-4e605666b08b8f863cbbbdaa34bb06988e648d26.tar.bz2 |
bpo-45400: Fix suggestion test of test_exceptions (GH-28783)
Fix test_name_error_suggestions_do_not_trigger_for_too_many_locals()
of test_exceptions if a directory name contains "a1" (like
"Python-3.11.0a1"): use a stricter regular expression.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2021-10-07-13-11-45.bpo-45400.h3iT7V.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-10-07-13-11-45.bpo-45400.h3iT7V.rst b/Misc/NEWS.d/next/Tests/2021-10-07-13-11-45.bpo-45400.h3iT7V.rst new file mode 100644 index 0000000..61b6653 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2021-10-07-13-11-45.bpo-45400.h3iT7V.rst @@ -0,0 +1,3 @@ +Fix test_name_error_suggestions_do_not_trigger_for_too_many_locals() of +test_exceptions if a directory name contains "a1" (like "Python-3.11.0a1"): +use a stricter regular expression. Patch by Victor Stinner. |