Skip to content

Commit

Permalink
Remove spurious print
Browse files Browse the repository at this point in the history
  • Loading branch information
ggventurini committed May 10, 2015
1 parent f4bfda6 commit 451ea5a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ahkab/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,6 @@ class memodict(collections.OrderedDict):
def __getitem__(self, *key):
return dict.__getitem__(self, key)
def __missing__(self, key):
print(len(self))
ret = self[key] = f(*key)
# set options.cache_len to None to disable any size limit.
if options.cache_len is not None and len(self) > options.cache_len:
Expand Down

0 comments on commit 451ea5a

Please sign in to comment.