Skip to content

Commit 19fe8b4

Browse files
Merge 71ed4a6 into master
2 parents a34fe3a + 71ed4a6 commit 19fe8b4

23 files changed

+22
-18
lines changed

.github/workflows/ci.yml

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
os: [ ubuntu-latest, macos-latest, windows-latest ]
24-
python-version: [ 3.8, 3.9, 3.10.0-beta.1 ]
24+
python-version: [ 3.8, 3.9, '3.10' ]
2525

2626
steps:
2727
- uses: actions/checkout@v2

.gitignore

100644100755
File mode changed.

LICENSE

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Artёm IG <github.com/rtmigo>
3+
Copyright (c) 2020-2022 Artёm IG <github.com/rtmigo>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

100644100755
+6-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
File-based **memoization** decorator. Caches the results of expensive function
44
calls. Retains the cached results between program restarts.
55

6-
CI tests are done in Python 3.8, 3.9 and 3.10-beta.1 on macOS, Ubuntu and Windows.
6+
CI tests are done in Python 3.8, 3.9 and 3.10 on macOS, Ubuntu and
7+
Windows.
78

89
---
910

@@ -217,15 +218,14 @@ from filememo import memoize
217218

218219
@lru_cache
219220
@memoize
220-
def too_expensive(x):
221-
return compute(x)
221+
def too_expensive():
222+
return compute()
222223
```
223224

224225
In this example, the `filememo` disk cache will be used to store the results
225226
between program runs, while the `functools` RAM cache will store the results
226227
between function calls.
227228

228229
If the data is already in disk cache, and the program is just started, then
229-
calling `too_expensive(33)` for the first time will read the result for
230-
argument `33` from disk. Further calls to `too_expensive(33)` will return
231-
the result from memory.
230+
calling `too_expensive()` for the first time will read the result from disk.
231+
Further calls to `too_expensive()` will return the result from memory.

filememo/__init__.py

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# SPDX-FileCopyrightText: (c) 2020 Artёm IG <github.com/rtmigo>
1+
# SPDX-FileCopyrightText: (c) 2020-2022 Artёm IG <github.com/rtmigo>
22
# SPDX-License-Identifier: MIT
33

44

5-
from ._deco import memoize
5+
from ._deco import memoize, FunctionException

filememo/_constants.py

100644100755
+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
__version__ = '0.3.2'
1+
__version__ = '0.3.3'
2+

filememo/_deco.py

100644100755
+6-4
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,16 @@ def _max_to_none(delta: dt.timedelta) -> Optional[dt.timedelta]:
3434
return delta
3535

3636

37-
def _outdated_exc(created: dt.datetime, max_age: Optional[dt.timedelta]):
37+
def _is_outdated_exception(created: dt.datetime,
38+
max_age: Optional[dt.timedelta]) -> bool:
3839
if max_age == dt.timedelta.max:
3940
return False
4041
if max_age is None: # means zero
4142
return True
4243
return (_utc() - created) > max_age
4344

4445

45-
def _outdated_result(created: dt.datetime, max_age: dt.timedelta):
46+
def _is_outdated_result(created: dt.datetime, max_age: dt.timedelta) -> bool:
4647
assert max_age is not None
4748
if max_age == dt.timedelta.max:
4849
return False
@@ -83,12 +84,13 @@ def f(*args, **kwargs):
8384
old_exception, old_result = record.data
8485

8586
if old_exception is not None:
86-
if not _outdated_exc(record.created, exceptions_max_age):
87+
if not _is_outdated_exception(record.created,
88+
exceptions_max_age):
8789
raise FunctionException(old_exception)
8890
else:
8991
assert old_exception is None
9092
# we don't need to delete anything on reading
91-
if not _outdated_result(record.created, max_age):
93+
if not _is_outdated_result(record.created, max_age):
9294
return old_result
9395

9496
# we did not return result and did not raise exception.

filememo/_dir_for_func.py

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from typing import Optional, Callable
88

99

10-
def _md5(s: str):
10+
def _md5(s: str) -> str:
1111
return hashlib.md5(s.encode('utf-8')).hexdigest()
1212

1313

filememo/_indirect_caller.py

100644100755
File mode changed.

requirements.txt

100644100755
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
neatest
2-
pickledir
2+
pickledir
3+
chkpkg

setup.py

100644100755
+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def load_module_dict(filename: str) -> dict:
4444
# python 3.8 is required by pickledir
4545
"Programming Language :: Python :: 3.8",
4646
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
4748
"Operating System :: POSIX",
4849
"Operating System :: Microsoft :: Windows",
4950
],

test_pkg.py

100644100755
-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
pkg.run_python_code('from filememo import memoize')
66

77
print("\nPackage is OK!")
8-

test_unit.py

100644100755
File mode changed.

tests/__init__.py

100644100755
File mode changed.

tests/persistence/__init__.py

100644100755
File mode changed.

tests/persistence/run_me_in_process.py

100644100755
File mode changed.

tests/test_combine_ram.py

100644100755
File mode changed.

tests/test_different_functions.py

100644100755
File mode changed.

tests/test_dir_for_function.py

100644100755
File mode changed.

tests/test_exceptions.py

100644100755
File mode changed.

tests/test_function_id.py

100644100755
File mode changed.

tests/test_paths.py

100644100755
File mode changed.

tests/test_persistense.py

100644100755
File mode changed.

0 commit comments

Comments
 (0)