Commit f902296a authored by Fred Drake's avatar Fred Drake

Ignore execfile() return value; reported by Neal Norwitz.

parent 95b0eb7c
......@@ -259,7 +259,7 @@ class RExec(ihooks._Verbose):
def r_execfile(self, file):
m = self.add_module('__main__')
return execfile(file, m.__dict__)
execfile(file, m.__dict__)
def r_import(self, mname, globals={}, locals={}, fromlist=[]):
return self.importer.import_module(mname, globals, locals, fromlist)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment