File: glossary.rst

package info (click to toggle)
python-trio 0.29.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,920 kB
  • sloc: python: 28,766; sh: 144; makefile: 25
file content (17 lines) | stat: -rw-r--r-- 449 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
:orphan:

.. _glossary:

********
Glossary
********

.. glossary::

   asynchronous file object
       This is an object with an API identical to a :term:`file object`, with
       the exception that all methods that do I/O are async functions.

       The main ways to create an asynchronous file object are by using the
       :func:`trio.open_file` function or the :meth:`trio.Path.open`
       method. See :ref:`async-file-io` for more details.