pycdc
pycdc copied to clipboard
Add support for printing ASTNode::NODE_CLASS
This fixes the issue #408
it also helps to improve the output for the issue #395
as follows;
before
def GEGLU():
'''GEGLU'''
...
GEGLU = (GEGLU, 'GEGLU', nn.Module)
after
class GEGLU(nn.Module):