X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=wrw%2Fenv.py;h=ed313a34532fa357ed13d98583cc958cb62e1dd0;hb=9bc70dab473c7057a20d182ce8566ad0a70a7c5d;hp=56d040d396e0577fd676799bc58012a6240a4202;hpb=d0034deebc5dc1fc5a54d1e99fe917f9ffbe7d69;p=wrw.git diff --git a/wrw/env.py b/wrw/env.py index 56d040d..ed313a3 100644 --- a/wrw/env.py +++ b/wrw/env.py @@ -10,7 +10,7 @@ class stack(object): class environment(object): __slots__ = ["parent", "map"] - def __init__(self, parent = None): + def __init__(self, parent=None): self.parent = parent self.map = weakref.WeakKeyDictionary() @@ -74,7 +74,7 @@ class binding(object): class var(object): __slots__ = ["__weakref__"] - def __init__(self, default = None): + def __init__(self, default=None): if default is not None: root.map[self] = default