(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/keywords.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/identifiers.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/literals.html| ]]
|
Python Reference Manual
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/genindex.html| ]]
|
Previous: 2.3.1 Keywords Up: 2.3 Identifiers and keywords Next: 2.4 Literals
2.3.2 Reserved classes of identifiers
Certain classes of identifiers (besides keywords) have special meanings. These are:
| Form
|
Meaning
|
Notes
|
_*
|
Not imported by "from module import *"
|
(1)
|
__*__
|
System-defined name
|
|
__*
|
Class-private name mangling
|
|
(XXX need section references here.)
Note:
- (1)
- The special identifier "_" is used in the interactive interpreter to store the result of the last evaluation; it is stored in the __builtin__ module. When not in interactive mode, "_" has no special meaning and is not defined.
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/keywords.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/identifiers.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/literals.html| ]]
|
Python Reference Manual
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/genindex.html| ]]
|
Previous: 2.3.1 Keywords Up: 2.3 Identifiers and keywords Next: 2.4 Literals
See About this document... for information on suggesting changes.