Message175037
Maybe lru_cache() should have a key argument so you can specify a specialized key function. So you might have
def _compile_key(args, kwds, typed):
return args
@functools.lru_cache(maxsize=500, key=_compile_key)
def _compile(pattern, flags):
... |
|
| Date |
User |
Action |
Args |
| 2012-11-06 23:59:32 | sbt | set | recipients:
+ sbt, barry, brett.cannon, rhettinger, jcea, ncoghlan, pitrou, pjenvey, ezio.melotti, zzzeek, serhiy.storchaka |
| 2012-11-06 23:59:32 | sbt | set | messageid: <[email protected]> |
| 2012-11-06 23:59:32 | sbt | link | issue16389 messages |
| 2012-11-06 23:59:32 | sbt | create | |
|