11 lines
180 B
Python
11 lines
180 B
Python
"""
|
|
"""
|
|
class Node(object):
|
|
def __init__(self, p):
|
|
self._p = p
|
|
|
|
def parse(self, scope):
|
|
pass
|
|
# print(type(self), list(self._p))
|
|
# print()
|