aboutsummaryrefslogtreecommitdiff
path: root/python/python3-transaction/README
diff options
context:
space:
mode:
authorYth - Arnaud <yth@ythogtha.org>2023-07-08 12:30:24 +0900
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2023-07-08 16:41:51 +0700
commit3517e9211d13af9554a82f509de1e02078078998 (patch)
treef1844c75feb32e6056f0579fb6d6dc64856a85f9 /python/python3-transaction/README
parentddccb620ae2588b337fab750ca5c174559610338 (diff)
python/python3-transaction: Added (transaction management).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-transaction/README')
-rw-r--r--python/python3-transaction/README8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/python3-transaction/README b/python/python3-transaction/README
new file mode 100644
index 0000000000..8c1d022bd7
--- /dev/null
+++ b/python/python3-transaction/README
@@ -0,0 +1,8 @@
+This package contains a generic transaction implementation for Python.
+It is mainly used by the ZODB, though.
+
+Note that the data manager API, transaction.interfaces.IDataManager, is
+syntactically simple, but semantically complex. The semantics were not
+easy to express in the interface. This could probably use more work. The
+semantics are presented in detail through examples of a sample data
+manager in transaction.tests.test_SampleDataManager.