MCPcopy Create free account
hub / github.com/ipython/ipython / execfile

Function execfile

tools/toollib.py:48–50  ·  view source on GitHub ↗
(fname, globs, locs=None)

Source from the content-addressed store, hash-verified

46 return ipdir
47
48def execfile(fname, globs, locs=None):
49 locs = locs or globs
50 exec(compile(open(fname).read(), fname, "exec"), globs, locs)

Callers

nothing calls this directly

Calls 1

readMethod · 0.80

Tested by

no test coverage detected