mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
#1535: rename __builtin__ module to builtins.
This commit is contained in:
parent
87f9c53937
commit
1a3284ed69
70 changed files with 246 additions and 247 deletions
|
@ -507,7 +507,7 @@ interpreter can only be used after the interpreter has been initialized.
|
|||
|
||||
.. index::
|
||||
single: Py_Initialize()
|
||||
module: __builtin__
|
||||
module: builtins
|
||||
module: __main__
|
||||
module: sys
|
||||
module: exceptions
|
||||
|
@ -516,7 +516,7 @@ interpreter can only be used after the interpreter has been initialized.
|
|||
|
||||
The basic initialization function is :cfunc:`Py_Initialize`. This initializes
|
||||
the table of loaded modules, and creates the fundamental modules
|
||||
:mod:`__builtin__`, :mod:`__main__`, :mod:`sys`, and :mod:`exceptions`. It also
|
||||
:mod:`builtins`, :mod:`__main__`, :mod:`sys`, and :mod:`exceptions`. It also
|
||||
initializes the module search path (``sys.path``).
|
||||
|
||||
.. index:: single: PySys_SetArgv()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue