mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-02 23:19:33 +08:00
16fd6681a6
More documentation to follow in release notes. Based on lazy-mainline branch, see for more details. Also-By: Jean Bredeche <jean@quantopian.com> Also-By: Andrew Liang <aliang@quantopian.com> Also-By: Abhijeet Kalyan <akalyan@quantopian.com>
8 lines
126 B
Python
8 lines
126 B
Python
from six import PY2
|
|
|
|
|
|
if PY2:
|
|
from functools32 import lru_cache # noqa
|
|
else:
|
|
from functools import lru_cache # noqa
|