- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 141 - 150 of 423 for host:docs.python.org (0.03 sec)
-
3. Data model — Python 3.13.3 documentation
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. (In a sense, and in conformance to Von ...docs.python.org/3/reference/datamodel.htmlRegistered: Wed Apr 16 03:20:42 UTC 2025 - Last Modified: Tue Apr 15 23:20:08 UTC 2025 - 436.4K bytes - Viewed (0) -
Built-in Exceptions — Python 3.13.3 documentation
In Python, all exceptions must be instances of a class that derives from BaseException. In a try statement with an except clause that mentions a particular class, that clause also handles any excep...docs.python.org/3/library/exceptions.htmlRegistered: Wed Apr 16 03:22:39 UTC 2025 - Last Modified: Tue Apr 15 23:20:09 UTC 2025 - 139K bytes - Viewed (0) -
pickle — Python object serialization — Python 3...
Source code: Lib/pickle.py 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...docs.python.org/3/library/pickle.htmlRegistered: Wed Apr 16 03:22:46 UTC 2025 - Last Modified: Tue Apr 15 23:20:09 UTC 2025 - 165.8K bytes - Viewed (0) -
threading — Thread-based parallelism — Python 3...
Source code: Lib/threading.py This module constructs higher-level threading interfaces on top of the lower level_thread module. CPython implementation detail: In CPython, due to the Global Interpre...docs.python.org/3/library/threading.htmlRegistered: Wed Apr 16 03:22:26 UTC 2025 - Last Modified: Tue Apr 15 23:20:09 UTC 2025 - 139.3K bytes - Viewed (0) -
Built-in Functions — Python 3.13.3 documentation
The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order.,,,, Built-in Functions,,, A, abs(), aiter(), all(), a...docs.python.org/3/library/functions.htmlRegistered: Wed Apr 16 03:20:46 UTC 2025 - Last Modified: Tue Apr 15 23:20:09 UTC 2025 - 299.5K bytes - Viewed (0) -
runpy — Locating and executing Python modules —...
Source code: Lib/runpy.py The runpy module is used to locate and run Python modules without importing them first. Its main use is to implement the-m command line switch that allows scripts to be lo...docs.python.org/3/library/runpy.htmlRegistered: Wed Apr 16 03:21:49 UTC 2025 - Last Modified: Tue Apr 15 23:20:09 UTC 2025 - 36.4K bytes - Viewed (0) -
reprlib — Alternate repr() implementation — Pyt...
Source code: Lib/reprlib.py The reprlib module provides a means for producing object representations with limits on the size of the resulting strings. This is used in the Python debugger and may be...docs.python.org/3/library/reprlib.htmlRegistered: Wed Apr 16 03:21:36 UTC 2025 - Last Modified: Tue Apr 15 23:20:09 UTC 2025 - 44.2K bytes - Viewed (0) -
traceback — Print or retrieve a stack traceback...
Source code: Lib/traceback.py This module provides a standard interface to extract, format and print stack traces of Python programs. It is more flexible than the interpreter’s default traceback di...docs.python.org/3/library/traceback.htmlRegistered: Wed Apr 16 03:20:13 UTC 2025 - Last Modified: Tue Apr 15 23:20:09 UTC 2025 - 110.8K bytes - Viewed (0) -
unittest.mock — mock object library — Python 3....
Source code: Lib/unittest/mock.py unittest.mock is a library for testing in Python. It allows you to replace parts of your system under test with mock objects and make assertions about how they hav...docs.python.org/3/library/unittest.mock.htmlRegistered: Wed Apr 16 03:20:22 UTC 2025 - Last Modified: Tue Apr 15 23:20:09 UTC 2025 - 399.9K bytes - Viewed (0) -
2. Lexical analysis — Python 3.13.3 documentation
A Python program is read by a parser. Input to the parser is a stream of tokens, generated by the lexical analyzer(also known as the tokenizer). This chapter describes how the lexical analyzer brea...docs.python.org/3/reference/lexical_analysis.htmlRegistered: Wed Apr 16 03:18:28 UTC 2025 - Last Modified: Tue Apr 15 23:20:08 UTC 2025 - 103.8K bytes - Viewed (0)