Fixed #18 : Parsing and evaluating Python

This commit is contained in:
2023-05-14 12:12:29 +02:00
parent e41094f908
commit 09a0246420
46 changed files with 2084 additions and 165 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ def test_i_can_put_the_same_key_several_times():
assert cache.lru == ["key2", "key1"]
def test_none_is_returned_when_not_found():
def test_not_found_is_returned_when_not_found():
cache = FastCache()
assert cache.get("foo") is NotFound