diff options
author | Raymond Hettinger <python@rcn.com> | 2003-01-04 02:16:22 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-01-04 02:16:22 (GMT) |
commit | 69bf8f3f4e2867bec07f6682df83174e5ae4f0ad (patch) | |
tree | 9ee3e8ddda435c015717ed3b5a3e78c38e7734d5 /Python/bltinmodule.c | |
parent | 2ca243368f45dd759f0e40e681238ebe4cea0b78 (diff) | |
download | cpython-69bf8f3f4e2867bec07f6682df83174e5ae4f0ad.zip cpython-69bf8f3f4e2867bec07f6682df83174e5ae4f0ad.tar.gz cpython-69bf8f3f4e2867bec07f6682df83174e5ae4f0ad.tar.bz2 |
SF bug #655271: Slightly modify locals() doc
Clarify the operation of locals().
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index ad06250..45ea4dc 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1041,7 +1041,7 @@ builtin_locals(PyObject *self) PyDoc_STRVAR(locals_doc, "locals() -> dictionary\n\ \n\ -Return the dictionary containing the current scope's local variables."); +Update and return a dictionary containing the current scope's local variables."); static PyObject * |