MCPcopy Index your code
hub / github.com/ipython/ipython / execfile

Function execfile

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

Source from the content-addressed store, hash-verified

44 return ipdir
45
46def execfile(fname, globs, locs=None):
47 locs = locs or globs
48 exec(compile(open(fname, encoding="utf-8").read(), fname, "exec"), globs, locs)

Callers

nothing calls this directly

Calls 1

readMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…