Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion doc/benchmarks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Available benchmark groups:
* ``default``: Group of benchmarks run by default by the ``run`` command
* ``math``: Float and integers
* ``regex``: Collection of regular expression benchmarks
* ``serialize``: Benchmarks on ``pickle`` and ``json`` modules
* ``serialize``: Benchmarks on ``pickle``, ``json`` and ``tomllib`` modules
* ``startup``: Collection of microbenchmarks focused on Python interpreter
start-up time.
* ``template``: Templating libraries
Expand Down Expand Up @@ -646,6 +646,15 @@ See the `Python decimal module (stdlib)
<https://docs.python.org/dev/library/decimal.html>`_.


tomllib_loads
-------------

Benchmark ``loads()`` function of the ``tomllib`` stdlib module
on a large TOML file of GitHub's real world data.
It heavily exercises string operations such as concatenation,
subscripting and iteration of a real world application.


tornado_http
------------

Expand Down
1 change: 1 addition & 0 deletions pyperformance/data-files/benchmarks/MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ sqlalchemy_imperative <local>
sqlite_synth <local>
sympy <local>
telco <local>
tomllib_loads <local>
tornado_http <local>
unpack_sequence <local>
unpickle <local:pickle>
Expand Down
Loading