Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add initial Doc for sequence protocol
  • Loading branch information
palaviv committed Jul 29, 2020
commit db6ef327457f9eb56e448c50309b714322212eed
4 changes: 3 additions & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,9 @@ Blob Objects
.. class:: Blob

A :class:`Blob` instance can read and write the data in the
:abbr:`BLOB (Binary Large OBject)`.
:abbr:`BLOB (Binary Large OBject)`. The :class:`Blob` object implement both
the file and sequence protocol. For example You can read data from the
Comment thread
palaviv marked this conversation as resolved.
Outdated
:class:`Blob` by doing ``obj.read(5)`` or by doing ``obj[:5]``.

.. method:: Blob.close()
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nitpick: Blob.* prefix can be removed.


Expand Down