March 2003
Intermediate to advanced
656 pages
39h 30m
English
execfile
voidinterp.execfile(Stringname) voidinterp.execfile(java.io.InputStreams) voidinterp.execfile(java.io.InputStreams,Stringname)
Executes, in interp’s
namespace, the Python statements read from the stream
s or from the file named
name. When you pass both
s and name,
execfile reads the statements from
s, and uses
name as the filename in error messages.