Sign in
android-kvm
/
buildroot
/
refs/heads/master
/
.
/
support
/
testing
/
tests
/
package
/
sample_python_diskcache.py
blob: 8ba34daf6e73f7326c91afd43018d7be01418bbd [
file
] [
log
] [
blame
] [
edit
]
from
diskcache
import
Cache
cache
=
Cache
()
cache
[
'test'
]
=
123
assert
cache
[
'test'
]
==
123
del
cache
[
'test'
]
assert
'test'
not
in
cache
cache
.
close
()