Skip to content
Merged
Changes from all 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
16 changes: 8 additions & 8 deletions Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -331,14 +331,14 @@ Module functions
.. audit-event:: sqlite3.connect database sqlite3.connect
.. audit-event:: sqlite3.connect/handle connection_handle sqlite3.connect

.. versionadded:: 3.4
The *uri* parameter.
.. versionchanged:: 3.4
Added the *uri* parameter.

.. versionchanged:: 3.7
*database* can now also be a :term:`path-like object`, not only a string.

.. versionadded:: 3.10
The ``sqlite3.connect/handle`` auditing event.
.. versionchanged:: 3.10
Added the ``sqlite3.connect/handle`` auditing event.

.. function:: complete_statement(statement)

Expand Down Expand Up @@ -662,8 +662,8 @@ Connection objects
:raises NotSupportedError:
If *deterministic* is used with SQLite versions older than 3.8.3.

.. versionadded:: 3.8
The *deterministic* parameter.
.. versionchanged:: 3.8
Added the *deterministic* parameter.

Example:

Expand Down Expand Up @@ -1553,10 +1553,10 @@ Row objects
Blob objects
^^^^^^^^^^^^

.. versionadded:: 3.11

.. class:: Blob

.. versionadded:: 3.11

A :class:`Blob` instance is a :term:`file-like object`
that can read and write data in an SQLite :abbr:`BLOB (Binary Large OBject)`.
Call :func:`len(blob) <len>` to get the size (number of bytes) of the blob.
Expand Down