Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
saraedum committed Jan 9, 2016
1 parent 0bcb93f commit 9cee22e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/misc/cachefunc.pyx
Expand Up @@ -1119,7 +1119,7 @@ cdef class CachedFunction(object):
try:
del (<dict>self.cache)[k]
except TypeError: # k is not hashable
k = (_cache_key, _cache_key(k))
k = (cache_key, cache_key(k))
del (<dict>self.cache)[k]

def get_key(self, *args, **kwds):
Expand Down

0 comments on commit 9cee22e

Please sign in to comment.