benchmark: update benchmark (#1207)

Co-authored-by: bytecii <bytecii@users.noreply.github.com>
Co-authored-by: Wendong-Fan <w3ndong.fan@gmail.com>
Co-authored-by: Wendong-Fan <133094783+Wendong-Fan@users.noreply.github.com>
This commit is contained in:
bytecii 2026-02-12 00:35:18 -08:00 committed by GitHub
parent c5ec78e5f9
commit f7bf29a40a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 840 additions and 35 deletions

View file

@ -0,0 +1,7 @@
# warnings
PEP 702: The new `warnings.deprecated()` decorator provides a way to communicate deprecations to a static type checker and to warn on usage of deprecated classes and functions. A `DeprecationWarning` may also be emitted when a decorated function or class is used at runtime. (Contributed by Jelle Zijlstra in `gh-104003`.)
# multiprocessing
The default number of worker threads and processes is now selected using `os.process_cpu_count()` instead of `os.cpu_count()`. (Contributed by Victor Stinner in `gh-109649`.)