summaryrefslogtreecommitdiffstats
path: root/src/front/scope.py
blob: 0df87296e318855fd5a396aa77e4ab87a4e8e152 (plain) (blame)
1
2
3
4
5
6
class Scope(object):
    __shared_state = {}
    functions = {}

    def __init__(self):
        self.__dict__ = self.__shared_state