~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

Viewing changes to Doc/library/__builtin__.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-11 13:30:19 UTC
  • mto: (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20100311133019-sblbooa3uqrkoe70
Tags: upstream-2.6.5~rc2
ImportĀ upstreamĀ versionĀ 2.6.5~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
       # ...
35
35
 
36
 
As an implementation detail, most modules have the name ``__builtins__`` (note
37
 
the ``'s'``) made available as part of their globals.  The value of
38
 
``__builtins__`` is normally either this module or the value of this modules's
39
 
:attr:`__dict__` attribute.  Since this is an implementation detail, it may not
40
 
be used by alternate implementations of Python.
 
36
.. impl-detail::
41
37
 
 
38
   Most modules have the name ``__builtins__`` (note the ``'s'``) made available
 
39
   as part of their globals.  The value of ``__builtins__`` is normally either
 
40
   this module or the value of this modules's :attr:`__dict__` attribute.  Since
 
41
   this is an implementation detail, it may not be used by alternate
 
42
   implementations of Python.