Clarify the operation of locals().
\end{funcdesc}
\begin{funcdesc}{locals}{}
- Return a dictionary representing the current local symbol table.
+ Update and return a dictionary representing the current local symbol table.
\warning{The contents of this dictionary should not be modified;
changes may not affect the values of local variables used by the
interpreter.}
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 *