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

Class Module

Parser/asdl.py:43–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41 raise NotImplementedError
42
43class Module(AST):
44 def __init__(self, name, dfns):
45 self.name = name
46 self.dfns = dfns
47 self.types = {type.name: type.value for type in dfns}
48
49 def __repr__(self):
50 return 'Module({0.name}, {0.dfns})'.format(self)
51
52class Type(AST):
53 def __init__(self, name, value):

Callers 1

_parse_moduleMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…