Skip to content

Commit 17dafdc

Browse files
committed
Clarify that abs() is not a namespace.
1 parent 62e4231 commit 17dafdc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/tutorial/classes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Let's begin with some definitions.
6565
A *namespace* is a mapping from names to objects. Most namespaces are currently
6666
implemented as Python dictionaries, but that's normally not noticeable in any
6767
way (except for performance), and it may change in the future. Examples of
68-
namespaces are: the set of built-in names (functions such as :func:`abs`, and
68+
namespaces are: the set of built-in names (containing functions such as :func:`abs`, and
6969
built-in exception names); the global names in a module; and the local names in
7070
a function invocation. In a sense the set of attributes of an object also form
7171
a namespace. The important thing to know about namespaces is that there is

0 commit comments

Comments
 (0)