MCPcopy Index your code
hub / github.com/python/cpython / seen

Function seen

Lib/pkgutil.py:66–69  ·  view source on GitHub ↗
(p, m={})

Source from the content-addressed store, hash-verified

64 """
65
66 def seen(p, m={}):
67 if p in m:
68 return True
69 m[p] = True
70
71 for info in iter_modules(path, prefix):
72 yield info

Callers 1

walk_packagesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…