pycdc icon indicating copy to clipboard operation
pycdc copied to clipboard

Add support for printing ASTNode::NODE_CLASS

Open greenozon opened this issue 1 year ago • 1 comments

This fixes the issue #408

greenozon avatar Dec 05 '23 18:12 greenozon

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):

greenozon avatar Dec 05 '23 21:12 greenozon