class documentation

class Code(Node):

View In Hierarchy

defines a Python code block, either inline or module level.

e.g.:

inline:
<%
    x = 12
%>

module level:
<%!
    import logger
%>
Method __init__ Undocumented
Method __repr__ Undocumented
Method declared​_identifiers Undocumented
Method undeclared​_identifiers Undocumented
Instance Variable code Undocumented
Instance Variable ismodule Undocumented
Instance Variable text Undocumented

Inherited from Node:

Method accept​_visitor Undocumented
Method get​_children Undocumented
Instance Variable filename Undocumented
Instance Variable lineno Undocumented
Instance Variable pos Undocumented
Instance Variable source Undocumented
Property exception​_kwargs Undocumented
def __init__(self, text, ismodule, **kwargs):

Undocumented

def __repr__(self):

Undocumented

def declared_identifiers(self):

Undocumented

def undeclared_identifiers(self):

Undocumented

code =

Undocumented

ismodule =

Undocumented

text =

Undocumented