mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
merge with 3.4
This commit is contained in:
commit
35aa10be6c
6 changed files with 20 additions and 7 deletions
|
@ -239,7 +239,9 @@ Process-wide parameters
|
||||||
:c:func:`Py_Initialize`, then :c:func:`Py_GetPath` won't attempt to compute a
|
:c:func:`Py_Initialize`, then :c:func:`Py_GetPath` won't attempt to compute a
|
||||||
default search path but uses the one provided instead. This is useful if
|
default search path but uses the one provided instead. This is useful if
|
||||||
Python is embedded by an application that has full knowledge of the location
|
Python is embedded by an application that has full knowledge of the location
|
||||||
of all modules. The path components should be separated by semicolons.
|
of all modules. The path components should be separated by the platform
|
||||||
|
dependent delimiter character, which is ``':'`` on Unix and Mac OS X, ``';'``
|
||||||
|
on Windows.
|
||||||
|
|
||||||
This also causes :data:`sys.executable` to be set only to the raw program
|
This also causes :data:`sys.executable` to be set only to the raw program
|
||||||
name (see :c:func:`Py_SetProgramName`) and for :data:`sys.prefix` and
|
name (see :c:func:`Py_SetProgramName`) and for :data:`sys.prefix` and
|
||||||
|
|
|
@ -16,7 +16,6 @@ but they are available on most other systems as well. Here's an overview:
|
||||||
io.rst
|
io.rst
|
||||||
time.rst
|
time.rst
|
||||||
argparse.rst
|
argparse.rst
|
||||||
optparse.rst
|
|
||||||
getopt.rst
|
getopt.rst
|
||||||
logging.rst
|
logging.rst
|
||||||
logging.config.rst
|
logging.config.rst
|
||||||
|
|
|
@ -73,4 +73,5 @@ the `Python Package Index <http://pypi.python.org/pypi>`_.
|
||||||
misc.rst
|
misc.rst
|
||||||
windows.rst
|
windows.rst
|
||||||
unix.rst
|
unix.rst
|
||||||
|
superseded.rst
|
||||||
undoc.rst
|
undoc.rst
|
||||||
|
|
|
@ -30,10 +30,8 @@ requires them; yet others are available only when a particular configuration
|
||||||
option was chosen at the time when Python was compiled and installed.
|
option was chosen at the time when Python was compiled and installed.
|
||||||
|
|
||||||
This manual is organized "from the inside out:" it first describes the built-in
|
This manual is organized "from the inside out:" it first describes the built-in
|
||||||
data types, then the built-in functions and exceptions, and finally the modules,
|
functions, data types and exceptions, and finally the modules, grouped in
|
||||||
grouped in chapters of related modules. The ordering of the chapters as well as
|
chapters of related modules.
|
||||||
the ordering of the modules within each chapter is roughly from most relevant to
|
|
||||||
least important.
|
|
||||||
|
|
||||||
This means that if you start reading this manual from the start, and skip to the
|
This means that if you start reading this manual from the start, and skip to the
|
||||||
next chapter when you get bored, you will get a reasonable overview of the
|
next chapter when you get bored, you will get a reasonable overview of the
|
||||||
|
|
|
@ -12,7 +12,6 @@ The full list of modules described in this chapter is:
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
|
||||||
imp.rst
|
|
||||||
zipimport.rst
|
zipimport.rst
|
||||||
pkgutil.rst
|
pkgutil.rst
|
||||||
modulefinder.rst
|
modulefinder.rst
|
||||||
|
|
14
Doc/library/superseded.rst
Normal file
14
Doc/library/superseded.rst
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
.. _superseded:
|
||||||
|
|
||||||
|
******************
|
||||||
|
Superseded Modules
|
||||||
|
******************
|
||||||
|
|
||||||
|
The modules described in this chapter are deprecated and only kept for
|
||||||
|
backwards compatibility. They have been superseded by other modules.
|
||||||
|
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
|
||||||
|
optparse.rst
|
||||||
|
imp.rst
|
Loading…
Add table
Add a link
Reference in a new issue