We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908038a commit 455663eCopy full SHA for 455663e
memoization/__init__.py
@@ -2,7 +2,7 @@
2
3
__all__ = ['cached', 'CachingAlgorithmFlag', 'FIFO', 'LRU', 'LFU']
4
5
-if (3, 4) <= sys.version_info <= (3, 10): # for Python 3.4, 3.5, 3.6, 3.7, 3.8, 3.9
+if (3, 4) <= sys.version_info < (4, 0): # for Python >=3.4 <4
6
from . import memoization as _memoization
7
8
try:
0 commit comments