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

Function execfile

setupbase.py:36–39  ·  view source on GitHub ↗
(path, globs, locs=None)

Source from the content-addressed store, hash-verified

34repo_root = Path(__file__).resolve().parent
35
36def execfile(path, globs, locs=None):
37 locs = locs or globs
38 with path.open(encoding="utf-8") as f:
39 exec(compile(f.read(), str(path), "exec"), globs, locs)
40
41#---------------------------------------------------------------------------
42# Basic project information

Callers 1

setupbase.pyFile · 0.70

Calls 1

readMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…