diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-04-26 07:28:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-26 07:28:53 (GMT) |
commit | 75120d2205af086140e5e4e2dc620eb19cdf9078 (patch) | |
tree | 3331acb51242000c1a9a0547ba25509f45c21280 /Misc/NEWS.d | |
parent | 7abb6c05afd02c17c7a941b64db5756b161b3cf7 (diff) | |
download | cpython-75120d2205af086140e5e4e2dc620eb19cdf9078.zip cpython-75120d2205af086140e5e4e2dc620eb19cdf9078.tar.gz cpython-75120d2205af086140e5e4e2dc620eb19cdf9078.tar.bz2 |
bpo-36719: regrtest always detect uncollectable objects (GH-12951)
regrtest now always detects uncollectable objects. Previously, the
check was only enabled by --findleaks. The check now also works with
-jN/--multiprocess N.
--findleaks becomes a deprecated alias to --fail-env-changed.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2019-04-26-09-02-49.bpo-36719.ys2uqH.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-04-26-09-02-49.bpo-36719.ys2uqH.rst b/Misc/NEWS.d/next/Tests/2019-04-26-09-02-49.bpo-36719.ys2uqH.rst new file mode 100644 index 0000000..4b6ef76 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2019-04-26-09-02-49.bpo-36719.ys2uqH.rst @@ -0,0 +1,4 @@ +regrtest now always detects uncollectable objects. Previously, the check was +only enabled by ``--findleaks``. The check now also works with +``-jN/--multiprocess N``. ``--findleaks`` becomes a deprecated alias to +``--fail-env-changed``. |