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

Class Type

Parser/asdl.py:52–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50 return 'Module({0.name}, {0.dfns})'.format(self)
51
52class Type(AST):
53 def __init__(self, name, value):
54 self.name = name
55 self.value = value
56
57 def __repr__(self):
58 return 'Type({0.name}, {0.value})'.format(self)
59
60class Constructor(AST):
61 def __init__(self, name, fields=None):

Callers 1

_parse_definitionsMethod · 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…