mirror of
https://github.com/reddit-archive/reddit.git
synced 2026-01-27 15:58:06 -05:00
Fix bug that I just wrote in clear_memo. This one will keep me out
of programmer heaven :(
This commit is contained in:
@@ -63,7 +63,7 @@ def _make_key(iden, a, kw):
|
||||
|
||||
return (_conv(iden)
|
||||
+ str([_conv(x) for x in a])
|
||||
+ str(dict((_conv(x),_conv(y)) for (x,y) in kw)))
|
||||
+ str(dict((_conv(x),_conv(y)) for (x,y) in kw.iteritems())))
|
||||
|
||||
@memoize('test')
|
||||
def test(x, y):
|
||||
|
||||
Reference in New Issue
Block a user