About 50 results
Open links in new tab
  1. 3. Data model — Python 3.14.3 documentation

    Mar 24, 2026 · 3. Data model ¶ 3.1. Objects, values and types ¶ Objects are Python’s abstraction for data. All data in a Python program is represented by objects or by relations between objects. Even …

  2. 9. Classes — Python 3.14.3 documentation

    Mar 25, 2026 · Python classes provide all the standard features of Object Oriented Programming: the class inheritance mechanism allows multiple base classes, a derived class can override any methods …

  3. pickle — Python object serialization — Python 3.14.3 documentation

    Mar 26, 2026 · The pickle module implements binary protocols for serializing and de-serializing a Python object structure. “Pickling” is the process whereby a Python object hierarchy is converted into a byte …

  4. Built-in Exceptions — Python 3.14.3 documentation

    Mar 25, 2026 · CPython implementation detail: Most built-in exceptions are implemented in C for efficiency, see: Objects/exceptions.c. Some have custom memory layouts which makes it impossible …

  5. logging — Logging facility for Python — Python 3.14.3 documentation

    The logger name hierarchy is analogous to the Python package hierarchy, and identical to it if you organise your loggers on a per-module basis using the recommended construction …

  6. io — Core tools for working with streams — Python 3.14.3 …

    Mar 25, 2026 · Source code: Lib/io.py Overview: The io module provides Python’s main facilities for dealing with various types of I/O. There are three main types of I/O: text I/O, binary I/O and raw I/O. …

  7. Built-in Types — Python 3.14.4 documentation

    2 days ago · This method corresponds to the tp_iternext slot of the type structure for Python objects in the Python/C API. Python defines several iterator objects to support iteration over general and …

  8. numbers — Numeric abstract base classes — Python 3.14.4 …

    2 days ago · The numbers module (PEP 3141) defines a hierarchy of numeric abstract base classes which progressively define more operations. None of the types defined in this module are intended to …

  9. The Python Standard Library — Python 3.14.3 documentation

    Mar 25, 2026 · The Python Standard Library ¶ While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the …

  10. inspect — Inspect live objects — Python 3.14.3 documentation

    5 days ago · Source code: Lib/inspect.py The inspect module provides several useful functions to help get information about live objects such as modules, classes, methods, functions, tracebacks, frame …