aboutsummaryrefslogtreecommitdiff
path: root/python/python2-atomicwrites/README
diff options
context:
space:
mode:
authorIsaac Yu <isaacyu1@isaacyu1.com>2023-05-13 09:27:10 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2023-05-13 19:27:15 +0700
commit73d6c9e66cd3d4068b4a401cce447c7b71b03f8a (patch)
tree1419f19cd8b5f4ec6c27c6df6746f121b3ab55fc /python/python2-atomicwrites/README
parentb9fc53e13333fee9418297a9a559cb6ac4ec70f1 (diff)
python/python2-atomicwrites: Added (library for atomic file writes)
Signed-off-by: bedlam <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python2-atomicwrites/README')
-rw-r--r--python/python2-atomicwrites/README18
1 files changed, 18 insertions, 0 deletions
diff --git a/python/python2-atomicwrites/README b/python/python2-atomicwrites/README
new file mode 100644
index 0000000000000..90d6650514b92
--- /dev/null
+++ b/python/python2-atomicwrites/README
@@ -0,0 +1,18 @@
+It uses a temporary file in the same directory as the given path. This
+ensures that the temporary file resides on the same filesystem.
+
+The temporary file will then be atomically moved to the target
+location: On POSIX, it will use rename if files should be overwritten,
+otherwise a combination of link and unlink. On Windows, it uses
+MoveFileEx through stdlib's ctypes with the appropriate flags.
+
+Note that with link and unlink, there's a timewindow where the file
+might be available under two entries in the filesystem: The name of
+the temporary file, and the name of the target file.
+
+Also note that the permissions of the target file may change this
+way. In some situations a chmod can be issued without any concurrency
+problems, but since that is not always the case, this library
+doesn't do it by itself.
+
+This is the Python 2 build of atomicwrites.