diff options
author | Victor Stinner <vstinner@python.org> | 2021-11-12 15:19:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-12 15:19:09 (GMT) |
commit | 9d3271438431c37c29c359f5b73e8094b5f82912 (patch) | |
tree | bd2ce77c372a256ca67c6bac57a64ad9a8aaabda /Misc | |
parent | 8f1b71de731dda668aede7c9b34d0ad7afb8f6a8 (diff) | |
download | cpython-9d3271438431c37c29c359f5b73e8094b5f82912.zip cpython-9d3271438431c37c29c359f5b73e8094b5f82912.tar.gz cpython-9d3271438431c37c29c359f5b73e8094b5f82912.tar.bz2 |
bpo-45745: Remove regrtest --findleaks options (GH-29514)
Remove the --findleaks command line option of regrtest: use the
--fail-env-changed option instead. Since Python 3.7, it was a
deprecated alias to the --fail-env-changed option.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2021-11-10-12-01-28.bpo-45745.wX5B3K.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-11-10-12-01-28.bpo-45745.wX5B3K.rst b/Misc/NEWS.d/next/Tests/2021-11-10-12-01-28.bpo-45745.wX5B3K.rst new file mode 100644 index 0000000..c3ef680 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2021-11-10-12-01-28.bpo-45745.wX5B3K.rst @@ -0,0 +1,3 @@ +Remove the ``--findleaks`` command line option of regrtest: use the +``--fail-env-changed`` option instead. Since Python 3.7, it was a deprecated +alias to the ``--fail-env-changed`` option. |