[Python-checkins] python/dist/src/Python bltinmodule.c,2.269,2.270

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Fri, 03 Jan 2003 18:16:24 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv26614/Python

Modified Files:
	bltinmodule.c 
Log Message:
SF bug #655271: Slightly modify locals() doc

Clarify the operation of locals().


Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.269
retrieving revision 2.270
diff -C2 -d -r2.269 -r2.270
*** bltinmodule.c	29 Dec 2002 18:31:19 -0000	2.269
--- bltinmodule.c	4 Jan 2003 02:16:22 -0000	2.270
***************
*** 1042,1046 ****
  "locals() -> dictionary\n\
  \n\
! Return the dictionary containing the current scope's local variables.");
  
  
--- 1042,1046 ----
  "locals() -> dictionary\n\
  \n\
! Update and return a dictionary containing the current scope's local variables.");