Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
d74589ef
Commit
d74589ef
authored
Jul 01, 2016
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed typos
parent
a874d186
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/ZODB/interfaces.py
src/ZODB/interfaces.py
+3
-3
No files found.
src/ZODB/interfaces.py
View file @
d74589ef
...
@@ -817,14 +817,14 @@ class IMultiCommitStorage(IStorage):
...
@@ -817,14 +817,14 @@ class IMultiCommitStorage(IStorage):
def
store
(
oid
,
serial
,
data
,
version
,
transaction
):
def
store
(
oid
,
serial
,
data
,
version
,
transaction
):
"""Store data for the object id, oid.
"""Store data for the object id, oid.
See IStorage.store. For object
'
s implementing this interface,
See IStorage.store. For objects implementing this interface,
the return value is always None.
the return value is always None.
"""
"""
def
tpc_finish
(
transaction
,
func
=
lambda
tid
:
None
):
def
tpc_finish
(
transaction
,
func
=
lambda
tid
:
None
):
"""Finish the transaction, making any transaction changes permanent.
"""Finish the transaction, making any transaction changes permanent.
See IStorage.store. For object
'
s implementing this interface,
See IStorage.store. For objects implementing this interface,
the return value must be the committed tid. It is used to set the
the return value must be the committed tid. It is used to set the
serial for objects whose ids were passed to previous store calls
serial for objects whose ids were passed to previous store calls
in the same transaction.
in the same transaction.
...
@@ -833,7 +833,7 @@ class IMultiCommitStorage(IStorage):
...
@@ -833,7 +833,7 @@ class IMultiCommitStorage(IStorage):
def
tpc_vote
(
transaction
):
def
tpc_vote
(
transaction
):
"""Provide a storage with an opportunity to veto a transaction
"""Provide a storage with an opportunity to veto a transaction
See IStorage.store. For object
'
s implementing this interface,
See IStorage.store. For objects implementing this interface,
the return value can be either None or a sequence of oids for which
the return value can be either None or a sequence of oids for which
a conflict was resolved.
a conflict was resolved.
"""
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment