File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -63,24 +63,8 @@ \subsection{Identifiers (Names)\label{atom-identifiers}}
6363\index {name}
6464\index {identifier}
6565
66- An identifier occurring as an atom is a reference to a local, global
67- or built-in name binding. If a name is assigned to anywhere in a code
68- block (even in unreachable code), and is not mentioned in a
69- \keyword {global} statement in that code block, then it refers to a local
70- name throughout that code block. When it is not assigned to anywhere
71- in the block, or when it is assigned to but also explicitly listed in
72- a \keyword {global} statement, it refers to a global name if one exists,
73- else to a built-in name (and this binding may dynamically
74- change).\footnote {The Python interpreter provides a useful set of
75- predefined built-in functions. It is not recommended to reuse
76- (hide) these names with self defined objects. See the
77- \citetitle [../lib/built-in-funcs.html]{Python Library Reference } for
78- the descriptions of built-in functions and methods.}
79- \indexii {name}{binding}
80- \index {code block}
81- \stindex {global}
82- \indexii {built-in}{name}
83- \indexii {global}{name}
66+ An identifier occurring as an atom is a name. See Section 4.1 for
67+ documentation of naming and binding.
8468
8569When the name is bound to an object, evaluation of the atom yields
8670that object. When a name is not bound, an attempt to evaluate it
You can’t perform that action at this time.
0 commit comments