========
All C code calling into Python and all C code called by Python uses
vectorcall / fastcall (see :pep:`590`) which reduces the overhead of
passing and receiving positional and keyword arguments. (:issue:`477`,
:issue:`446`):
* Conversion of arguments from Python values to C values drops generic
:c:func:`PyArg_ParseTupleAndKeywords` in favour of direct processing
which is more efficient and allows better exception messages.
* Running :ref:`speedtest` with a VFS that inherits all methods went
from being 17% slower than pure SQLite to 2% slower.
* A :source:`virtual table benchmark <tools/vtbench.py>` takes 35%
less time. (Remember that benchmarks are best case!)
The :doc:`shell <shell>` JSON output modes have been fixed. Mode
'json' outputs a json array, while mode 'jsonl' does newline delimited
json objects, aka `json lines <https://jsonlines.org/>`__.
(:issue:`483`)