aboutsummaryrefslogtreecommitdiff
path: root/python/python3-pickleshare/README
diff options
context:
space:
mode:
authorBenjamin Trigona-Harany <bosth@alumni.sfu.ca>2019-06-07 05:35:16 -0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-06-09 05:33:16 +0700
commitf78aa78d6f0fb762e3fd36f97e2b07d654fdd559 (patch)
tree53a7bb5d2edd109660b40c9cf39b3196357d8b9e /python/python3-pickleshare/README
parentfa33224244deb63dc40b1db5b1c6b9a9f6d16c1d (diff)
python/python3-pickleshare: Removed (merged with pickleshare).
Signed-off-by: Benjamin Trigona-Harany <bosth@alumni.sfu.ca>
Diffstat (limited to 'python/python3-pickleshare/README')
-rw-r--r--python/python3-pickleshare/README9
1 files changed, 0 insertions, 9 deletions
diff --git a/python/python3-pickleshare/README b/python/python3-pickleshare/README
deleted file mode 100644
index c7c034a911..0000000000
--- a/python/python3-pickleshare/README
+++ /dev/null
@@ -1,9 +0,0 @@
-PickleShare is a small shelve-like datastore with concurrency support.
-
-Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike
-shelve, many processes can access the database simultaneously. Changing a value
-in database is immediately visible to other processes accessing the same
-database.
-
-Concurrency is possible because the values are stored in separate files. Hence
-the "database" is a directory where all files are governed by PickleShare.