diff options
author | Fred Drake <fdrake@acm.org> | 2000-09-12 16:23:48 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-09-12 16:23:48 (GMT) |
commit | 1349437e4c2bfc6e7f601f5a7c284a00fdbdcd6b (patch) | |
tree | 5c9ddc1c33a3c151f2b228c55c000007fe6778c0 /Doc/lib/libfuncs.tex | |
parent | 81cccb7563bdffacc475e50510951a0c3eaf31ef (diff) | |
download | cpython-1349437e4c2bfc6e7f601f5a7c284a00fdbdcd6b.zip cpython-1349437e4c2bfc6e7f601f5a7c284a00fdbdcd6b.tar.gz cpython-1349437e4c2bfc6e7f601f5a7c284a00fdbdcd6b.tar.bz2 |
When referring to namespaces, always say "namespaces" instead of
"name spaces".
Inconsistency noted by Keith Briggs <keith.briggs@bt.com>.
Diffstat (limited to 'Doc/lib/libfuncs.tex')
-rw-r--r-- | Doc/lib/libfuncs.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index e6203f6..cb5acde 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -227,7 +227,7 @@ class instances are callable if they have a \method{__call__()} method. The arguments are a file name and two optional dictionaries. The file is parsed and evaluated as a sequence of Python statements (similarly to a module) using the \var{globals} and \var{locals} - dictionaries as global and local name space. If the \var{locals} + dictionaries as global and local namespace. If the \var{locals} dictionary is omitted it defaults to the \var{globals} dictionary. If both dictionaries are omitted, the expression is executed in the environment where \function{execfile()} is called. The return value is |