plcopen/structures.py
changeset 1847 6198190bc121
parent 1846 14b40afccd69
child 1853 47a3f39bead0
equal deleted inserted replaced
1846:14b40afccd69 1847:6198190bc121
    49 
    49 
    50 def GetSubTypes(type):
    50 def GetSubTypes(type):
    51     """
    51     """
    52     Returns list of all types that correspont to the ANY* meta type
    52     Returns list of all types that correspont to the ANY* meta type
    53     """
    53     """
    54     return [typename for typename, parenttype in TypeHierarchy.items() if not typename.startswith("ANY") and IsOfType(typename, type)]
    54     return [typename for typename, _parenttype in TypeHierarchy.items() if not typename.startswith("ANY") and IsOfType(typename, type)]
    55 
    55 
    56 
    56 
    57 DataTypeRange = dict(DataTypeRange_list)
    57 DataTypeRange = dict(DataTypeRange_list)
    58 
    58 
    59 """
    59 """