Codebase list python-filelock / a504f26
Update upstream source from tag 'upstream/3.0.6' Update to upstream version '3.0.6' with Debian dir 5102d7f8640bce33cfe571f502d74cb8cdb65631 Sascha Steinbiss 5 years ago
3 changed file(s) with 10 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
00 Metadata-Version: 1.1
11 Name: filelock
2 Version: 3.0.4
2 Version: 3.0.6
33 Summary: A platform independent file lock.
44 Home-page: https://github.com/benediktschmitt/py-filelock
55 Author: Benedikt Schmitt
3636 Description: py-filelock
3737 ===========
3838
39 .. image:: https://travis-ci.org/benediktschmitt/py-filelock.svg?branch=master
40 :target: https://travis-ci.org/benediktschmitt/py-filelock
41
3942 `Similar Libraries <#similar-libraries>`_
4043 ~ `Installation <#installation>`_
4144 ~ `Documentation <#documentation>`_
131134
132135 def cite1():
133136 with lock:
134 open(file_path, "a").write("I hat it when he does that.")
137 open(file_path, "a").write("I hate it when he does that.")
135138
136139 def cite2():
137140 with lock:
00 py-filelock
11 ===========
22
3 .. image:: https://travis-ci.org/benediktschmitt/py-filelock.svg?branch=master
4 :target: https://travis-ci.org/benediktschmitt/py-filelock
5
36 `Similar Libraries <#similar-libraries>`_
47 ~ `Installation <#installation>`_
58 ~ `Documentation <#documentation>`_
9598
9699 def cite1():
97100 with lock:
98 open(file_path, "a").write("I hat it when he does that.")
101 open(file_path, "a").write("I hate it when he does that.")
99102
100103 def cite2():
101104 with lock:
7070 "FileLock"
7171 ]
7272
73 __version__ = "3.0.4"
73 __version__ = "3.0.6"
7474
7575
7676 _logger = None