mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
gh-136145: Define 'standard library' and 'stdlib' in the glossary (GH-136146)
--------- Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Éric <merwok@netwok.org>
This commit is contained in:
parent
e697f5e7c0
commit
92f392ad9e
1 changed files with 13 additions and 0 deletions
|
|
@ -1280,6 +1280,16 @@ Glossary
|
|||
and ending with double underscores. Special methods are documented in
|
||||
:ref:`specialnames`.
|
||||
|
||||
standard library
|
||||
The collection of :term:`packages <package>`, :term:`modules <module>`
|
||||
and :term:`extension modules <extension module>` distributed as a part
|
||||
of the official Python interpreter package. The exact membership of the
|
||||
collection may vary based on platform, available system libraries, or
|
||||
other criteria. Documentation can be found at :ref:`library-index`.
|
||||
|
||||
See also :data:`sys.stdlib_module_names` for a list of all possible
|
||||
standard library module names.
|
||||
|
||||
statement
|
||||
A statement is part of a suite (a "block" of code). A statement is either
|
||||
an :term:`expression` or one of several constructs with a keyword, such
|
||||
|
|
@ -1290,6 +1300,9 @@ Glossary
|
|||
issues such as incorrect types. See also :term:`type hints <type hint>`
|
||||
and the :mod:`typing` module.
|
||||
|
||||
stdlib
|
||||
An abbreviation of :term:`standard library`.
|
||||
|
||||
strong reference
|
||||
In Python's C API, a strong reference is a reference to an object
|
||||
which is owned by the code holding the reference. The strong
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue