mirror of
https://github.com/python/cpython.git
synced 2025-08-18 07:41:05 +00:00

svn+ssh://pythondev@svn.python.org/python/trunk ........ r78859 | georg.brandl | 2010-03-12 10:57:43 +0100 (Fr, 12 Mär 2010) | 1 line Get rid of backticks. ........ r78860 | georg.brandl | 2010-03-12 11:02:03 +0100 (Fr, 12 Mär 2010) | 1 line Fix warnings from "make check". ........ r78952 | georg.brandl | 2010-03-14 10:55:08 +0100 (So, 14 Mär 2010) | 1 line #8137: add iso-8859-16 to the standard encodings table. ........ r79168 | georg.brandl | 2010-03-21 10:01:27 +0100 (So, 21 Mär 2010) | 1 line Fix some issues found by Jacques Ducasse on the docs list. ........ r79169 | georg.brandl | 2010-03-21 10:02:01 +0100 (So, 21 Mär 2010) | 1 line Remove the "built-in objects" file. It only contained two paragraphs of which only one contained useful information, which belongs in the ref manual however. ........ r79173 | georg.brandl | 2010-03-21 10:09:38 +0100 (So, 21 Mär 2010) | 1 line Document that GzipFile supports iteration. ........ r79176 | georg.brandl | 2010-03-21 10:17:41 +0100 (So, 21 Mär 2010) | 1 line Introduce copy by slicing, used in later chapters. ........ r79178 | georg.brandl | 2010-03-21 10:28:16 +0100 (So, 21 Mär 2010) | 1 line Clarify that for shell=True, the shell PID will be the child PID. ........ r79179 | georg.brandl | 2010-03-21 10:37:54 +0100 (So, 21 Mär 2010) | 1 line Mention inefficiency of lists as queues, add link to collections.deque discussion. ........ r79181 | georg.brandl | 2010-03-21 10:51:16 +0100 (So, 21 Mär 2010) | 1 line Update os.kill() emulation example for Windows to use ctypes. ........ r79184 | georg.brandl | 2010-03-21 10:58:36 +0100 (So, 21 Mär 2010) | 1 line Update text for newest US DST regulation. The sample file already has the calculation right. ........ r79185 | georg.brandl | 2010-03-21 11:02:47 +0100 (So, 21 Mär 2010) | 1 line Include structmember.h correctly. ........ r79192 | georg.brandl | 2010-03-21 12:50:58 +0100 (So, 21 Mär 2010) | 1 line Remove leftover word. ........ r79212 | georg.brandl | 2010-03-21 20:01:38 +0100 (So, 21 Mär 2010) | 1 line Fix plural. ........
82 lines
2.3 KiB
ReStructuredText
82 lines
2.3 KiB
ReStructuredText
.. _library-index:
|
|
|
|
###############################
|
|
The Python Standard Library
|
|
###############################
|
|
|
|
:Release: |version|
|
|
:Date: |today|
|
|
|
|
While :ref:`reference-index` describes the exact syntax and
|
|
semantics of the Python language, this library reference manual
|
|
describes the standard library that is distributed with Python. It also
|
|
describes some of the optional components that are commonly included
|
|
in Python distributions.
|
|
|
|
Python's standard library is very extensive, offering a wide range of
|
|
facilities as indicated by the long table of contents listed below. The
|
|
library contains built-in modules (written in C) that provide access to
|
|
system functionality such as file I/O that would otherwise be
|
|
inaccessible to Python programmers, as well as modules written in Python
|
|
that provide standardized solutions for many problems that occur in
|
|
everyday programming. Some of these modules are explicitly designed to
|
|
encourage and enhance the portability of Python programs by abstracting
|
|
away platform-specifics into platform-neutral APIs.
|
|
|
|
The Python installers for the Windows platform usually includes
|
|
the entire standard library and often also include many additional
|
|
components. For Unix-like operating systems Python is normally provided
|
|
as a collection of packages, so it may be necessary to use the packaging
|
|
tools provided with the operating system to obtain some or all of the
|
|
optional components.
|
|
|
|
In addition to the standard library, there is a growing collection of
|
|
several thousand components (from individual programs and modules to
|
|
packages and entire application development frameworks), available from
|
|
the `Python Package Index <http://pypi.python.org/pypi>`_.
|
|
|
|
|
|
.. toctree::
|
|
:maxdepth: 2
|
|
:numbered:
|
|
|
|
intro.rst
|
|
functions.rst
|
|
constants.rst
|
|
stdtypes.rst
|
|
exceptions.rst
|
|
|
|
strings.rst
|
|
datatypes.rst
|
|
numeric.rst
|
|
filesys.rst
|
|
persistence.rst
|
|
archiving.rst
|
|
fileformats.rst
|
|
crypto.rst
|
|
allos.rst
|
|
someos.rst
|
|
ipc.rst
|
|
netdata.rst
|
|
markup.rst
|
|
internet.rst
|
|
mm.rst
|
|
i18n.rst
|
|
frameworks.rst
|
|
tk.rst
|
|
development.rst
|
|
debug.rst
|
|
python.rst
|
|
custominterp.rst
|
|
restricted.rst
|
|
modules.rst
|
|
language.rst
|
|
compiler.rst
|
|
misc.rst
|
|
windows.rst
|
|
unix.rst
|
|
mac.rst
|
|
macosa.rst
|
|
sgi.rst
|
|
sun.rst
|
|
undoc.rst
|