Skip to content

Commit

Permalink
Remove unused W_Func
Browse files Browse the repository at this point in the history
  • Loading branch information
fhahn committed Jul 14, 2013
1 parent 313bc93 commit 238b593
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions luna/w_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,17 +125,6 @@ def hash(self):
return compute_hash(self.s_val)


class W_Func(W_Object):
def __init__(self, val):
self.f_val = val

def getval(self):
return self.f_val

def clone(self):
return W_Func(self.f_val)


class W_Pri(W_Num):
def __init__(self, val):
assert val in (0, 1, 2)
Expand Down

0 comments on commit 238b593

Please sign in to comment.