rest25/library/__builtin__.rst => rest262/library/__builtin__.rst
3=======================================
4
5.. module:: __builtin__
6   :synopsis: The module that provides the built-in namespace.
7
8
9This module provides direct access to all 'built-in' identifiers of Python; for
10example, ``__builtin__.open`` is the full name for the built-in function
t11-:func:`open`.  See chapter :ref:`builtin`, "Built-in Objects."
t11+:func:`open`.  See chapter :ref:`builtin`.
12
13This module is not normally accessed explicitly by most applications, but can be
14useful in modules that provide objects with the same name as a built-in value,
15but in which the built-in of that name is also needed.  For example, in a module
16that wants to implement an :func:`open` function that wraps the built-in
17:func:`open`, this module can be used directly::
18
19   import __builtin__
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op