File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 29
29
30
30
31
31
__title__ = 'diskcache'
32
- __version__ = '3.0.6 '
33
- __build__ = 0x030006
32
+ __version__ = '3.1.0 '
33
+ __build__ = 0x030100
34
34
__author__ = 'Grant Jenks'
35
35
__license__ = 'Apache 2.0'
36
36
__copyright__ = 'Copyright 2016-2018 Grant Jenks'
Original file line number Diff line number Diff line change @@ -87,10 +87,10 @@ in a `with` statement to safeguard calling :meth:`close
87
87
>>> cache.close()
88
88
>>> with Cache(' /tmp/mycachedir' ) as reference:
89
89
... pass
90
-
91
- Closed Cache objects will automatically re-open when accessed. But opening Cache
92
- objects is relatively slow, and since all operations are atomic, you can safely
93
- leave Cache objects open.
90
+
91
+ Closed Cache objects will automatically re-open when accessed. But opening
92
+ Cache objects is relatively slow, and since all operations are atomic, you can
93
+ safely leave Cache objects open.
94
94
95
95
>>> cache.set(b ' key' ) = b ' value'
96
96
>>> cache.close()
You can’t perform that action at this time.
0 commit comments