
3. Data model — Python 3.14.3 documentation
2 days ago · Python methods (including those decorated with @staticmethod and @classmethod) are implemented as non-data descriptors. Accordingly, instances can redefine and override methods.
The Python Standard Library — Python 3.14.3 documentation
2 days ago · While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the standard library that is distributed with …
Python Module Index — Python 3.14.2 documentation
4 days ago · Python Module Index _ | a | b | c | d | e | f | g | h | i | j | k | l | m | n | o | p | q | r | s | t | u | v | w | x | z
The Python Language Reference — Python 3.14.3 documentation
2 days ago · The semantics of non-essential built-in object types and of the built-in functions and modules are described in The Python Standard Library. For an informal introduction to the language, …
4. Execution model — Python 3.14.2 documentation
4 days ago · Python’s execution model does not operate in a vacuum. It runs on a host machine and through that host’s runtime environment, including its operating system (OS), if there is one.
pickle — Python object serialization — Python 3.14.3 documentation
2 days ago · Python has a more primitive serialization module called marshal, but in general pickle should always be the preferred way to serialize Python objects. marshal exists primarily to support …
What’s New in Python — Python 3.14.3 documentation
The “What’s New in Python” series of essays takes tours through the most important changes between major Python versions. They are a “must read” for anyone wishing to stay up-to-date after a new …
Concurrent Execution — Python 3.14.3 documentation
2 days ago · The modules described in this chapter provide support for concurrent execution of code. The appropriate choice of tool will depend on the task to be executed (CPU bound vs IO bound) and …
3.14.2 Documentation - Python
Jan 30, 2026 · Python 3.14.2 documentation Welcome! This is the official documentation for Python 3.14.2. Documentation sections: ... Indices, glossary, and search: ... Project information:
tkinter — Python interface to Tcl/Tk — Python 3.14.3 documentation
2 days ago · The tkinter package (“Tk interface”) is the standard Python interface to the Tcl/Tk GUI toolkit. Both Tk and tkinter are available on most Unix platforms, including macOS, as well as on …