summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/3.5.4rc1.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/3.5.4rc1.rst')
-rw-r--r--Misc/NEWS.d/3.5.4rc1.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/Misc/NEWS.d/3.5.4rc1.rst b/Misc/NEWS.d/3.5.4rc1.rst
index 5af08cb..f261ddb 100644
--- a/Misc/NEWS.d/3.5.4rc1.rst
+++ b/Misc/NEWS.d/3.5.4rc1.rst
@@ -250,7 +250,6 @@ by Nir Soffer.
.. section: Library
signal.setitimer() may disable the timer when passed a tiny value.
-
Tiny values (such as 1e-6) are valid non-zero values for setitimer(), which
is specified as taking microsecond-resolution intervals. However, on some
platform, our conversion routine could convert 1e-6 into a zero interval,
@@ -1001,15 +1000,12 @@ test_zipfile64.
.. section: Tests
regrtest: Enhance regrtest and backport features from the master branch.
-
Add options: --coverage, --testdir, --list-tests (list test files, don't run
them), --list-cases (list test identifiers, don't run them, :issue:`30523`),
--matchfile (load a list of test filters from a text file, :issue:`30540`),
--slowest (alias to --slow).
-
Enhance output: add timestamp, test result, currently running tests, "Tests
result: xxx" summary with total duration, etc.
-
Fix reference leak hunting in regrtest, --huntrleaks: regrtest now warms up
caches, create explicitly all internal singletons which are created on
demand to prevent false positives when checking for reference leaks.