[Python-checkins] r51678 - python/branches/release25-maint/Doc/tut/tut.tex

georg.brandl python-checkins at python.org
Sat Sep 2 00:30:57 CEST 2006


Author: georg.brandl
Date: Sat Sep  2 00:30:56 2006
New Revision: 51678

Modified:
   python/branches/release25-maint/Doc/tut/tut.tex
Log:
evalfile() should be execfile().
 (backport from rev. 51677)

Modified: python/branches/release25-maint/Doc/tut/tut.tex
==============================================================================
--- python/branches/release25-maint/Doc/tut/tut.tex	(original)
+++ python/branches/release25-maint/Doc/tut/tut.tex	Sat Sep  2 00:30:56 2006
@@ -4381,7 +4381,7 @@
 makes use of private variables of the base class possible.)
 
 Notice that code passed to \code{exec}, \code{eval()} or
-\code{evalfile()} does not consider the classname of the invoking 
+\code{execfile()} does not consider the classname of the invoking 
 class to be the current class; this is similar to the effect of the 
 \code{global} statement, the effect of which is likewise restricted to 
 code that is byte-compiled together.  The same restriction applies to


More information about the Python-checkins mailing list