mirror of
https://github.com/gryf/ebook-converter.git
synced 2026-01-02 00:22:25 +01:00
9 lines
174 B
Python
9 lines
174 B
Python
from ebook_converter.polyglot.builtins import is_py3
|
|
if is_py3:
|
|
from functools import lru_cache
|
|
else:
|
|
from backports.functools_lru_cache import lru_cache
|
|
|
|
|
|
lru_cache
|