Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
469271d4
Commit
469271d4
authored
Jan 27, 2011
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More source links
parent
1a90f9c5
Changes
45
Hide whitespace changes
Inline
Side-by-side
Showing
45 changed files
with
161 additions
and
7 deletions
+161
-7
Doc/library/dummy_threading.rst
Doc/library/dummy_threading.rst
+3
-0
Doc/library/fractions.rst
Doc/library/fractions.rst
+3
-0
Doc/library/ftplib.rst
Doc/library/ftplib.rst
+4
-0
Doc/library/getopt.rst
Doc/library/getopt.rst
+4
-0
Doc/library/gettext.rst
Doc/library/gettext.rst
+3
-0
Doc/library/gzip.rst
Doc/library/gzip.rst
+4
-0
Doc/library/hashlib.rst
Doc/library/hashlib.rst
+4
-0
Doc/library/hmac.rst
Doc/library/hmac.rst
+3
-0
Doc/library/http.client.rst
Doc/library/http.client.rst
+4
-0
Doc/library/http.cookiejar.rst
Doc/library/http.cookiejar.rst
+3
-0
Doc/library/http.cookies.rst
Doc/library/http.cookies.rst
+3
-0
Doc/library/http.server.rst
Doc/library/http.server.rst
+4
-0
Doc/library/imaplib.rst
Doc/library/imaplib.rst
+4
-0
Doc/library/imghdr.rst
Doc/library/imghdr.rst
+3
-0
Doc/library/inspect.rst
Doc/library/inspect.rst
+3
-0
Doc/library/mailcap.rst
Doc/library/mailcap.rst
+3
-0
Doc/library/mimetypes.rst
Doc/library/mimetypes.rst
+4
-0
Doc/library/modulefinder.rst
Doc/library/modulefinder.rst
+3
-0
Doc/library/netrc.rst
Doc/library/netrc.rst
+3
-0
Doc/library/nntplib.rst
Doc/library/nntplib.rst
+4
-0
Doc/library/optparse.rst
Doc/library/optparse.rst
+7
-5
Doc/library/pipes.rst
Doc/library/pipes.rst
+3
-0
Doc/library/pkgutil.rst
Doc/library/pkgutil.rst
+4
-0
Doc/library/platform.rst
Doc/library/platform.rst
+3
-0
Doc/library/plistlib.rst
Doc/library/plistlib.rst
+4
-0
Doc/library/poplib.rst
Doc/library/poplib.rst
+4
-0
Doc/library/profile.rst
Doc/library/profile.rst
+3
-0
Doc/library/py_compile.rst
Doc/library/py_compile.rst
+4
-0
Doc/library/pydoc.rst
Doc/library/pydoc.rst
+4
-0
Doc/library/rlcompleter.rst
Doc/library/rlcompleter.rst
+3
-0
Doc/library/site.rst
Doc/library/site.rst
+3
-0
Doc/library/smtpd.rst
Doc/library/smtpd.rst
+3
-2
Doc/library/smtplib.rst
Doc/library/smtplib.rst
+4
-0
Doc/library/sndhdr.rst
Doc/library/sndhdr.rst
+4
-0
Doc/library/socketserver.rst
Doc/library/socketserver.rst
+4
-0
Doc/library/ssl.rst
Doc/library/ssl.rst
+4
-0
Doc/library/stat.rst
Doc/library/stat.rst
+3
-0
Doc/library/sunau.rst
Doc/library/sunau.rst
+3
-0
Doc/library/telnetlib.rst
Doc/library/telnetlib.rst
+4
-0
Doc/library/warnings.rst
Doc/library/warnings.rst
+3
-0
Doc/library/wave.rst
Doc/library/wave.rst
+4
-0
Doc/library/weakref.rst
Doc/library/weakref.rst
+3
-0
Doc/library/webbrowser.rst
Doc/library/webbrowser.rst
+3
-0
Doc/library/xdrlib.rst
Doc/library/xdrlib.rst
+4
-0
Doc/library/zipfile.rst
Doc/library/zipfile.rst
+4
-0
No files found.
Doc/library/dummy_threading.rst
View file @
469271d4
...
@@ -4,6 +4,9 @@
...
@@ -4,6 +4,9 @@
.. module:: dummy_threading
.. module:: dummy_threading
:synopsis: Drop-in replacement for the threading module.
:synopsis: Drop-in replacement for the threading module.
**Source code:** :source:`Lib/dummy_threading.py`
--------------
This module provides a duplicate interface to the :mod:`threading` module. It
This module provides a duplicate interface to the :mod:`threading` module. It
is meant to be imported when the :mod:`_thread` module is not provided on a
is meant to be imported when the :mod:`_thread` module is not provided on a
...
...
Doc/library/fractions.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
.. moduleauthor:: Jeffrey Yasskin <jyasskin at gmail.com>
.. moduleauthor:: Jeffrey Yasskin <jyasskin at gmail.com>
.. sectionauthor:: Jeffrey Yasskin <jyasskin at gmail.com>
.. sectionauthor:: Jeffrey Yasskin <jyasskin at gmail.com>
**Source code:** :source:`Lib/fractions.py`
--------------
The :mod:`fractions` module provides support for rational number arithmetic.
The :mod:`fractions` module provides support for rational number arithmetic.
...
...
Doc/library/ftplib.rst
View file @
469271d4
...
@@ -9,6 +9,10 @@
...
@@ -9,6 +9,10 @@
pair: FTP; protocol
pair: FTP; protocol
single: FTP; ftplib (standard module)
single: FTP; ftplib (standard module)
**Source code:** :source:`Lib/ftp.py`
--------------
This module defines the class :class:`FTP` and a few related items. The
This module defines the class :class:`FTP` and a few related items. The
:class:`FTP` class implements the client side of the FTP protocol. You can use
:class:`FTP` class implements the client side of the FTP protocol. You can use
this to write Python programs that perform a variety of automated FTP jobs, such
this to write Python programs that perform a variety of automated FTP jobs, such
...
...
Doc/library/getopt.rst
View file @
469271d4
...
@@ -5,6 +5,10 @@
...
@@ -5,6 +5,10 @@
:synopsis: Portable parser for command line options; support both short and
:synopsis: Portable parser for command line options; support both short and
long option names.
long option names.
**Source code:** :source:`Lib/getopt.py`
--------------
.. note::
.. note::
The :mod:`getopt` module is a parser for command line options whose API is
The :mod:`getopt` module is a parser for command line options whose API is
designed to be familiar to users of the C :c:func:`getopt` function. Users who
designed to be familiar to users of the C :c:func:`getopt` function. Users who
...
...
Doc/library/gettext.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
.. moduleauthor:: Barry A. Warsaw <barry@zope.com>
.. moduleauthor:: Barry A. Warsaw <barry@zope.com>
.. sectionauthor:: Barry A. Warsaw <barry@zope.com>
.. sectionauthor:: Barry A. Warsaw <barry@zope.com>
**Source code:** :source:`Lib/gettext.py`
--------------
The :mod:`gettext` module provides internationalization (I18N) and localization
The :mod:`gettext` module provides internationalization (I18N) and localization
(L10N) services for your Python modules and applications. It supports both the
(L10N) services for your Python modules and applications. It supports both the
...
...
Doc/library/gzip.rst
View file @
469271d4
...
@@ -4,6 +4,10 @@
...
@@ -4,6 +4,10 @@
.. module:: gzip
.. module:: gzip
:synopsis: Interfaces for gzip compression and decompression using file objects.
:synopsis: Interfaces for gzip compression and decompression using file objects.
**Source code:** :source:`Lib/gzip.py`
--------------
This module provides a simple interface to compress and decompress files just
This module provides a simple interface to compress and decompress files just
like the GNU programs :program:`gzip` and :program:`gunzip` would.
like the GNU programs :program:`gzip` and :program:`gunzip` would.
...
...
Doc/library/hashlib.rst
View file @
469271d4
...
@@ -11,6 +11,10 @@
...
@@ -11,6 +11,10 @@
single: message digest, MD5
single: message digest, MD5
single: secure hash algorithm, SHA1, SHA224, SHA256, SHA384, SHA512
single: secure hash algorithm, SHA1, SHA224, SHA256, SHA384, SHA512
**Source code:** :source:`Lib/hashlib.py`
--------------
This module implements a common interface to many different secure hash and
This module implements a common interface to many different secure hash and
message digest algorithms. Included are the FIPS secure hash algorithms SHA1,
message digest algorithms. Included are the FIPS secure hash algorithms SHA1,
SHA224, SHA256, SHA384, and SHA512 (defined in FIPS 180-2) as well as RSA's MD5
SHA224, SHA256, SHA384, and SHA512 (defined in FIPS 180-2) as well as RSA's MD5
...
...
Doc/library/hmac.rst
View file @
469271d4
...
@@ -7,6 +7,9 @@
...
@@ -7,6 +7,9 @@
.. moduleauthor:: Gerhard Häring <ghaering@users.sourceforge.net>
.. moduleauthor:: Gerhard Häring <ghaering@users.sourceforge.net>
.. sectionauthor:: Gerhard Häring <ghaering@users.sourceforge.net>
.. sectionauthor:: Gerhard Häring <ghaering@users.sourceforge.net>
**Source code:** :source:`Lib/hmac.py`
--------------
This module implements the HMAC algorithm as described by :rfc:`2104`.
This module implements the HMAC algorithm as described by :rfc:`2104`.
...
...
Doc/library/http.client.rst
View file @
469271d4
...
@@ -11,6 +11,10 @@
...
@@ -11,6 +11,10 @@
.. index:: module: urllib.request
.. index:: module: urllib.request
**Source code:** :source:`Lib/http/client.py`
--------------
This module defines classes which implement the client side of the HTTP and
This module defines classes which implement the client side of the HTTP and
HTTPS protocols. It is normally not used directly --- the module
HTTPS protocols. It is normally not used directly --- the module
:mod:`urllib.request` uses it to handle URLs that use HTTP and HTTPS.
:mod:`urllib.request` uses it to handle URLs that use HTTP and HTTPS.
...
...
Doc/library/http.cookiejar.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
.. moduleauthor:: John J. Lee <jjl@pobox.com>
.. moduleauthor:: John J. Lee <jjl@pobox.com>
.. sectionauthor:: John J. Lee <jjl@pobox.com>
.. sectionauthor:: John J. Lee <jjl@pobox.com>
**Source code:** :source:`Lib/http/cookiejar.py`
--------------
The :mod:`http.cookiejar` module defines classes for automatic handling of HTTP
The :mod:`http.cookiejar` module defines classes for automatic handling of HTTP
cookies. It is useful for accessing web sites that require small pieces of data
cookies. It is useful for accessing web sites that require small pieces of data
...
...
Doc/library/http.cookies.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
.. moduleauthor:: Timothy O'Malley <timo@alum.mit.edu>
.. moduleauthor:: Timothy O'Malley <timo@alum.mit.edu>
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
**Source code:** :source:`Lib/http/cookies.py`
--------------
The :mod:`http.cookies` module defines classes for abstracting the concept of
The :mod:`http.cookies` module defines classes for abstracting the concept of
cookies, an HTTP state management mechanism. It supports both simple string-only
cookies, an HTTP state management mechanism. It supports both simple string-only
...
...
Doc/library/http.server.rst
View file @
469271d4
...
@@ -11,6 +11,10 @@
...
@@ -11,6 +11,10 @@
single: URL
single: URL
single: httpd
single: httpd
**Source code:** :source:`Lib/http/server.py`
--------------
This module defines classes for implementing HTTP servers (Web servers).
This module defines classes for implementing HTTP servers (Web servers).
One class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer` subclass.
One class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer` subclass.
...
...
Doc/library/imaplib.rst
View file @
469271d4
...
@@ -16,6 +16,10 @@
...
@@ -16,6 +16,10 @@
pair: IMAP4_SSL; protocol
pair: IMAP4_SSL; protocol
pair: IMAP4_stream; protocol
pair: IMAP4_stream; protocol
**Source code:** :source:`Lib/imaplib.py`
--------------
This module defines three classes, :class:`IMAP4`, :class:`IMAP4_SSL` and
This module defines three classes, :class:`IMAP4`, :class:`IMAP4_SSL` and
:class:`IMAP4_stream`, which encapsulate a connection to an IMAP4 server and
:class:`IMAP4_stream`, which encapsulate a connection to an IMAP4 server and
implement a large subset of the IMAP4rev1 client protocol as defined in
implement a large subset of the IMAP4rev1 client protocol as defined in
...
...
Doc/library/imghdr.rst
View file @
469271d4
...
@@ -4,6 +4,9 @@
...
@@ -4,6 +4,9 @@
.. module:: imghdr
.. module:: imghdr
:synopsis: Determine the type of image contained in a file or byte stream.
:synopsis: Determine the type of image contained in a file or byte stream.
**Source code:** :source:`Lib/imghdr.py`
--------------
The :mod:`imghdr` module determines the type of image contained in a file or
The :mod:`imghdr` module determines the type of image contained in a file or
byte stream.
byte stream.
...
...
Doc/library/inspect.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
.. moduleauthor:: Ka-Ping Yee <ping@lfw.org>
.. moduleauthor:: Ka-Ping Yee <ping@lfw.org>
.. sectionauthor:: Ka-Ping Yee <ping@lfw.org>
.. sectionauthor:: Ka-Ping Yee <ping@lfw.org>
**Source code:** :source:`Lib/inspect.py`
--------------
The :mod:`inspect` module provides several useful functions to help get
The :mod:`inspect` module provides several useful functions to help get
information about live objects such as modules, classes, methods, functions,
information about live objects such as modules, classes, methods, functions,
...
...
Doc/library/mailcap.rst
View file @
469271d4
...
@@ -4,6 +4,9 @@
...
@@ -4,6 +4,9 @@
.. module:: mailcap
.. module:: mailcap
:synopsis: Mailcap file handling.
:synopsis: Mailcap file handling.
**Source code:** :source:`Lib/mailcap.py`
--------------
Mailcap files are used to configure how MIME-aware applications such as mail
Mailcap files are used to configure how MIME-aware applications such as mail
readers and Web browsers react to files with different MIME types. (The name
readers and Web browsers react to files with different MIME types. (The name
...
...
Doc/library/mimetypes.rst
View file @
469271d4
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
.. index:: pair: MIME; content type
.. index:: pair: MIME; content type
**Source code:** :source:`Lib/mimetypes.py`
--------------
The :mod:`mimetypes` module converts between a filename or URL and the MIME type
The :mod:`mimetypes` module converts between a filename or URL and the MIME type
associated with the filename extension. Conversions are provided from filename
associated with the filename extension. Conversions are provided from filename
to MIME type and from MIME type to filename extension; encodings are not
to MIME type and from MIME type to filename extension; encodings are not
...
...
Doc/library/modulefinder.rst
View file @
469271d4
...
@@ -7,6 +7,9 @@
...
@@ -7,6 +7,9 @@
..
module
::
modulefinder
..
module
::
modulefinder
:
synopsis
:
Find
modules
used
by
a
script
.
:
synopsis
:
Find
modules
used
by
a
script
.
**
Source
code
:**
:
source
:`
Lib
/
modulefinder
.
py
`
--------------
This
module
provides
a
:
class
:`
ModuleFinder
`
class
that
can
be
used
to
determine
This
module
provides
a
:
class
:`
ModuleFinder
`
class
that
can
be
used
to
determine
the
set
of
modules
imported
by
a
script
.
``
modulefinder
.
py
``
can
also
be
run
as
the
set
of
modules
imported
by
a
script
.
``
modulefinder
.
py
``
can
also
be
run
as
...
...
Doc/library/netrc.rst
View file @
469271d4
...
@@ -7,6 +7,9 @@
...
@@ -7,6 +7,9 @@
.. moduleauthor:: Eric S. Raymond <esr@snark.thyrsus.com>
.. moduleauthor:: Eric S. Raymond <esr@snark.thyrsus.com>
.. sectionauthor:: Eric S. Raymond <esr@snark.thyrsus.com>
.. sectionauthor:: Eric S. Raymond <esr@snark.thyrsus.com>
**Source code:** :source:`Lib/netrc.py`
--------------
The :class:`netrc` class parses and encapsulates the netrc file format used by
The :class:`netrc` class parses and encapsulates the netrc file format used by
the Unix :program:`ftp` program and other FTP clients.
the Unix :program:`ftp` program and other FTP clients.
...
...
Doc/library/nntplib.rst
View file @
469271d4
...
@@ -10,6 +10,10 @@
...
@@ -10,6 +10,10 @@
pair: NNTP; protocol
pair: NNTP; protocol
single: Network News Transfer Protocol
single: Network News Transfer Protocol
**Source code:** :source:`Lib/nntplib.py`
--------------
This module defines the class :class:`NNTP` which implements the client side of
This module defines the class :class:`NNTP` which implements the client side of
the Network News Transfer Protocol. It can be used to implement a news reader
the Network News Transfer Protocol. It can be used to implement a news reader
or poster, or automated news processors. It is compatible with :rfc:`3977`
or poster, or automated news processors. It is compatible with :rfc:`3977`
...
...
Doc/library/optparse.rst
View file @
469271d4
...
@@ -4,14 +4,16 @@
...
@@ -4,14 +4,16 @@
.. module:: optparse
.. module:: optparse
:synopsis: Command-line option parsing library.
:synopsis: Command-line option parsing library.
:deprecated:
:deprecated:
.. deprecated:: 2.7
The :mod:`optparse` module is deprecated and will not be developed further;
development will continue with the :mod:`argparse` module.
..
moduleauthor:: Greg Ward <gward@python.net>
..
moduleauthor:: Greg Ward <gward@python.net>
..
sectionauthor:: Greg Ward <gward@python.net>
..
sectionauthor:: Greg Ward <gward@python.net>
**Source code:** :source:`Lib/optparse.py`
--------------
.. deprecated:: 2.7
The :mod:`optparse` module is deprecated and will not be developed further;
development will continue with the :mod:`argparse` module.
:mod:`optparse` is a more convenient, flexible, and powerful library for parsing
:mod:`optparse` is a more convenient, flexible, and powerful library for parsing
command-line options than the old :mod:`getopt` module. :mod:`optparse` uses a
command-line options than the old :mod:`getopt` module. :mod:`optparse` uses a
...
...
Doc/library/pipes.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
:synopsis: A Python interface to Unix shell pipelines.
:synopsis: A Python interface to Unix shell pipelines.
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
**Source code:** :source:`Lib/pipes.py`
--------------
The :mod:`pipes` module defines a class to abstract the concept of a *pipeline*
The :mod:`pipes` module defines a class to abstract the concept of a *pipeline*
--- a sequence of converters from one file to another.
--- a sequence of converters from one file to another.
...
...
Doc/library/pkgutil.rst
View file @
469271d4
...
@@ -4,6 +4,10 @@
...
@@ -4,6 +4,10 @@
..
module
::
pkgutil
..
module
::
pkgutil
:
synopsis
:
Utilities
for
the
import
system
.
:
synopsis
:
Utilities
for
the
import
system
.
**
Source
code
:**
:
source
:`
Lib
/
pkgutil
.
py
`
--------------
This
module
provides
utilities
for
the
import
system
,
in
particular
package
This
module
provides
utilities
for
the
import
system
,
in
particular
package
support
.
support
.
...
...
Doc/library/platform.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
.. moduleauthor:: Marc-Andre Lemburg <mal@egenix.com>
.. moduleauthor:: Marc-Andre Lemburg <mal@egenix.com>
.. sectionauthor:: Bjorn Pettersen <bpettersen@corp.fairisaac.com>
.. sectionauthor:: Bjorn Pettersen <bpettersen@corp.fairisaac.com>
**Source code:** :source:`Lib/platform.py`
--------------
.. note::
.. note::
...
...
Doc/library/plistlib.rst
View file @
469271d4
...
@@ -11,6 +11,10 @@
...
@@ -11,6 +11,10 @@
pair: plist; file
pair: plist; file
single: property list
single: property list
**Source code:** :source:`Lib/plistlib.py`
--------------
This module provides an interface for reading and writing the "property list"
This module provides an interface for reading and writing the "property list"
XML files used mainly by Mac OS X.
XML files used mainly by Mac OS X.
...
...
Doc/library/poplib.rst
View file @
469271d4
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
.. index:: pair: POP3; protocol
.. index:: pair: POP3; protocol
**Source code:** :source:`Lib/poplib.py`
--------------
This module defines a class, :class:`POP3`, which encapsulates a connection to a
This module defines a class, :class:`POP3`, which encapsulates a connection to a
POP3 server and implements the protocol as defined in :rfc:`1725`. The
POP3 server and implements the protocol as defined in :rfc:`1725`. The
:class:`POP3` class supports both the minimal and optional command sets.
:class:`POP3` class supports both the minimal and optional command sets.
...
...
Doc/library/profile.rst
View file @
469271d4
...
@@ -9,6 +9,9 @@ The Python Profilers
...
@@ -9,6 +9,9 @@ The Python Profilers
.. module:: profile
.. module:: profile
:synopsis: Python source profiler.
:synopsis: Python source profiler.
**Source code:** :source:`Lib/profile.py` and :source:`Lib/pstats.py`
--------------
.. _profiler-introduction:
.. _profiler-introduction:
...
...
Doc/library/py_compile.rst
View file @
469271d4
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
.. index:: pair: file; byte-code
.. index:: pair: file; byte-code
**Source code:** :source:`Lib/py_compile.py`
--------------
The :mod:`py_compile` module provides a function to generate a byte-code file
The :mod:`py_compile` module provides a function to generate a byte-code file
from a source file, and another function used when the module source file is
from a source file, and another function used when the module source file is
invoked as a script.
invoked as a script.
...
...
Doc/library/pydoc.rst
View file @
469271d4
...
@@ -12,6 +12,10 @@
...
@@ -12,6 +12,10 @@
single: documentation; online
single: documentation; online
single: help; online
single: help; online
**Source code:** :source:`Lib/pydoc.py`
--------------
The :mod:`pydoc` module automatically generates documentation from Python
The :mod:`pydoc` module automatically generates documentation from Python
modules. The documentation can be presented as pages of text on the console,
modules. The documentation can be presented as pages of text on the console,
served to a Web browser, or saved to HTML files.
served to a Web browser, or saved to HTML files.
...
...
Doc/library/rlcompleter.rst
View file @
469271d4
...
@@ -5,6 +5,9 @@
...
@@ -5,6 +5,9 @@
:synopsis: Python identifier completion, suitable for the GNU readline library.
:synopsis: Python identifier completion, suitable for the GNU readline library.
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
**Source code:** :source:`Lib/rlcompleter.py`
--------------
The :mod:`rlcompleter` module defines a completion function suitable for the
The :mod:`rlcompleter` module defines a completion function suitable for the
:mod:`readline` module by completing valid Python identifiers and keywords.
:mod:`readline` module by completing valid Python identifiers and keywords.
...
...
Doc/library/site.rst
View file @
469271d4
...
@@ -4,6 +4,9 @@
...
@@ -4,6 +4,9 @@
.. module:: site
.. module:: site
:synopsis: A standard way to reference site-specific modules.
:synopsis: A standard way to reference site-specific modules.
**Source code:** :source:`Lib/site.py`
--------------
**This module is automatically imported during initialization.** The automatic
**This module is automatically imported during initialization.** The automatic
import can be suppressed using the interpreter's :option:`-S` option.
import can be suppressed using the interpreter's :option:`-S` option.
...
...
Doc/library/smtpd.rst
View file @
469271d4
...
@@ -7,8 +7,9 @@
...
@@ -7,8 +7,9 @@
.. moduleauthor:: Barry Warsaw <barry@zope.com>
.. moduleauthor:: Barry Warsaw <barry@zope.com>
.. sectionauthor:: Moshe Zadka <moshez@moshez.org>
.. sectionauthor:: Moshe Zadka <moshez@moshez.org>
**Source code:** :source:`Lib/smtpd.py`
--------------
This module offers several classes to implement SMTP (email) servers.
This module offers several classes to implement SMTP (email) servers.
...
@@ -166,4 +167,4 @@ SMTPChannel Objects
...
@@ -166,4 +167,4 @@ SMTPChannel Objects
DATA Sets the internal state to :attr:`DATA` and stores remaining lines
DATA Sets the internal state to :attr:`DATA` and stores remaining lines
from the client in :attr:`received_data` until the terminator
from the client in :attr:`received_data` until the terminator
"\r\n.\r\n" is received.
"\r\n.\r\n" is received.
======== ===================================================================
======== ===================================================================
\ No newline at end of file
Doc/library/smtplib.rst
View file @
469271d4
...
@@ -10,6 +10,10 @@
...
@@ -10,6 +10,10 @@
pair: SMTP; protocol
pair: SMTP; protocol
single: Simple Mail Transfer Protocol
single: Simple Mail Transfer Protocol
**Source code:** :source:`Lib/smtplib.py`
--------------
The :mod:`smtplib` module defines an SMTP client session object that can be used
The :mod:`smtplib` module defines an SMTP client session object that can be used
to send mail to any Internet machine with an SMTP or ESMTP listener daemon. For
to send mail to any Internet machine with an SMTP or ESMTP listener daemon. For
details of SMTP and ESMTP operation, consult :rfc:`821` (Simple Mail Transfer
details of SMTP and ESMTP operation, consult :rfc:`821` (Simple Mail Transfer
...
...
Doc/library/sndhdr.rst
View file @
469271d4
...
@@ -10,6 +10,10 @@
...
@@ -10,6 +10,10 @@
single: A-LAW
single: A-LAW
single: u-LAW
single: u-LAW
**Source code:** :source:`Lib/sndhdr.py`
--------------
The :mod:`sndhdr` provides utility functions which attempt to determine the type
The :mod:`sndhdr` provides utility functions which attempt to determine the type
of sound data which is in a file. When these functions are able to determine
of sound data which is in a file. When these functions are able to determine
what type of sound data is stored in a file, they return a tuple ``(type,
what type of sound data is stored in a file, they return a tuple ``(type,
...
...
Doc/library/socketserver.rst
View file @
469271d4
...
@@ -4,6 +4,10 @@
...
@@ -4,6 +4,10 @@
.. module:: socketserver
.. module:: socketserver
:synopsis: A framework for network servers.
:synopsis: A framework for network servers.
**Source code:** :source:`Lib/socketserver.py`
--------------
The :mod:`socketserver` module simplifies the task of writing network servers.
The :mod:`socketserver` module simplifies the task of writing network servers.
There are four basic server classes: :class:`TCPServer` uses the Internet TCP
There are four basic server classes: :class:`TCPServer` uses the Internet TCP
...
...
Doc/library/ssl.rst
View file @
469271d4
...
@@ -12,6 +12,10 @@
...
@@ -12,6 +12,10 @@
.. index:: TLS, SSL, Transport Layer Security, Secure Sockets Layer
.. index:: TLS, SSL, Transport Layer Security, Secure Sockets Layer
**Source code:** :source:`Lib/ssl.py`
--------------
This module provides access to Transport Layer Security (often known as "Secure
This module provides access to Transport Layer Security (often known as "Secure
Sockets Layer") encryption and peer authentication facilities for network
Sockets Layer") encryption and peer authentication facilities for network
sockets, both client-side and server-side. This module uses the OpenSSL
sockets, both client-side and server-side. This module uses the OpenSSL
...
...
Doc/library/stat.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
os.lstat() and os.fstat().
os.lstat() and os.fstat().
.. sectionauthor:: Skip Montanaro <skip@automatrix.com>
.. sectionauthor:: Skip Montanaro <skip@automatrix.com>
**Source code:** :source:`Lib/stat.py`
--------------
The :mod:`stat` module defines constants and functions for interpreting the
The :mod:`stat` module defines constants and functions for interpreting the
results of :func:`os.stat`, :func:`os.fstat` and :func:`os.lstat` (if they
results of :func:`os.stat`, :func:`os.fstat` and :func:`os.lstat` (if they
...
...
Doc/library/sunau.rst
View file @
469271d4
...
@@ -5,6 +5,9 @@
...
@@ -5,6 +5,9 @@
:synopsis: Provide an interface to the Sun AU sound format.
:synopsis: Provide an interface to the Sun AU sound format.
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
**Source code:** :source:`Lib/sunau.py`
--------------
The :mod:`sunau` module provides a convenient interface to the Sun AU sound
The :mod:`sunau` module provides a convenient interface to the Sun AU sound
format. Note that this module is interface-compatible with the modules
format. Note that this module is interface-compatible with the modules
...
...
Doc/library/telnetlib.rst
View file @
469271d4
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
.. index:: single: protocol; Telnet
.. index:: single: protocol; Telnet
**Source code:** :source:`Lib/telnetlib.py`
--------------
The :mod:`telnetlib` module provides a :class:`Telnet` class that implements the
The :mod:`telnetlib` module provides a :class:`Telnet` class that implements the
Telnet protocol. See :rfc:`854` for details about the protocol. In addition, it
Telnet protocol. See :rfc:`854` for details about the protocol. In addition, it
provides symbolic constants for the protocol characters (see below), and for the
provides symbolic constants for the protocol characters (see below), and for the
...
...
Doc/library/warnings.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
.. module:: warnings
.. module:: warnings
:synopsis: Issue warning messages and control their disposition.
:synopsis: Issue warning messages and control their disposition.
**Source code:** :source:`Lib/warnings.py`
--------------
Warning messages are typically issued in situations where it is useful to alert
Warning messages are typically issued in situations where it is useful to alert
the user of some condition in a program, where that condition (normally) doesn't
the user of some condition in a program, where that condition (normally) doesn't
...
...
Doc/library/wave.rst
View file @
469271d4
...
@@ -6,6 +6,10 @@
...
@@ -6,6 +6,10 @@
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. Documentations stolen from comments in file.
.. Documentations stolen from comments in file.
**Source code:** :source:`Lib/wave.py`
--------------
The :mod:`wave` module provides a convenient interface to the WAV sound format.
The :mod:`wave` module provides a convenient interface to the WAV sound format.
It does not support compression/decompression, but it does support mono/stereo.
It does not support compression/decompression, but it does support mono/stereo.
...
...
Doc/library/weakref.rst
View file @
469271d4
...
@@ -8,6 +8,9 @@
...
@@ -8,6 +8,9 @@
.. moduleauthor:: Martin von Löwis <martin@loewis.home.cs.tu-berlin.de>
.. moduleauthor:: Martin von Löwis <martin@loewis.home.cs.tu-berlin.de>
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
**Source code:** :source:`Lib/weakref.py`
--------------
The :mod:`weakref` module allows the Python programmer to create :dfn:`weak
The :mod:`weakref` module allows the Python programmer to create :dfn:`weak
references` to objects.
references` to objects.
...
...
Doc/library/webbrowser.rst
View file @
469271d4
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
.. moduleauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
.. moduleauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
**Source code:** :source:`Lib/webbrowser.py`
--------------
The :mod:`webbrowser` module provides a high-level interface to allow displaying
The :mod:`webbrowser` module provides a high-level interface to allow displaying
Web-based documents to users. Under most circumstances, simply calling the
Web-based documents to users. Under most circumstances, simply calling the
...
...
Doc/library/xdrlib.rst
View file @
469271d4
...
@@ -9,6 +9,10 @@
...
@@ -9,6 +9,10 @@
single: XDR
single: XDR
single: External Data Representation
single: External Data Representation
**Source code:** :source:`Lib/xdrlib.py`
--------------
The :mod:`xdrlib` module supports the External Data Representation Standard as
The :mod:`xdrlib` module supports the External Data Representation Standard as
described in :rfc:`1014`, written by Sun Microsystems, Inc. June 1987. It
described in :rfc:`1014`, written by Sun Microsystems, Inc. June 1987. It
supports most of the data types described in the RFC.
supports most of the data types described in the RFC.
...
...
Doc/library/zipfile.rst
View file @
469271d4
...
@@ -6,6 +6,10 @@
...
@@ -6,6 +6,10 @@
..
moduleauthor
::
James
C
.
Ahlstrom
<
jim
@
interet
.
com
>
..
moduleauthor
::
James
C
.
Ahlstrom
<
jim
@
interet
.
com
>
..
sectionauthor
::
James
C
.
Ahlstrom
<
jim
@
interet
.
com
>
..
sectionauthor
::
James
C
.
Ahlstrom
<
jim
@
interet
.
com
>
**
Source
code
:**
:
source
:`
Lib
/
zipfile
.
py
`
--------------
The
ZIP
file
format
is
a
common
archive
and
compression
standard
.
This
module
The
ZIP
file
format
is
a
common
archive
and
compression
standard
.
This
module
provides
tools
to
create
,
read
,
write
,
append
,
and
list
a
ZIP
file
.
Any
provides
tools
to
create
,
read
,
write
,
append
,
and
list
a
ZIP
file
.
Any
advanced
use
of
this
module
will
require
an
understanding
of
the
format
,
as
advanced
use
of
this
module
will
require
an
understanding
of
the
format
,
as
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment