File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -1280,6 +1280,16 @@ Glossary
1280
1280
and ending with double underscores. Special methods are documented in
1281
1281
:ref: `specialnames `.
1282
1282
1283
+ standard library
1284
+ The collection of :term: `packages <package> `, :term: `modules <module> `
1285
+ and :term: `extension modules <extension module> ` distributed as a part
1286
+ of the official Python interpreter package. The exact membership of the
1287
+ collection may vary based on platform, available system libraries, or
1288
+ other criteria. Documentation can be found at :ref: `library-index `.
1289
+
1290
+ See also :data: `sys.stdlib_module_names ` for a list of all possible
1291
+ standard library module names.
1292
+
1283
1293
statement
1284
1294
A statement is part of a suite (a "block" of code). A statement is either
1285
1295
an :term: `expression ` or one of several constructs with a keyword, such
@@ -1290,6 +1300,9 @@ Glossary
1290
1300
issues such as incorrect types. See also :term: `type hints <type hint> `
1291
1301
and the :mod: `typing ` module.
1292
1302
1303
+ stdlib
1304
+ An abbreviation of :term: `standard library `.
1305
+
1293
1306
strong reference
1294
1307
In Python's C API, a strong reference is a reference to an object
1295
1308
which is owned by the code holding the reference. The strong
You can’t perform that action at this time.
0 commit comments