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
Kirill Smelkov
ZODB
Commits
43223f1e
Commit
43223f1e
authored
Oct 18, 2008
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed the length argument to history to be consistent with the
history interface.
parent
cc986bde
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/ZEO/ClientStorage.py
src/ZEO/ClientStorage.py
+2
-2
No files found.
src/ZEO/ClientStorage.py
View file @
43223f1e
...
@@ -685,10 +685,10 @@ class ClientStorage(object):
...
@@ -685,10 +685,10 @@ class ClientStorage(object):
raise
POSException
.
StorageTransactionError
(
self
.
_transaction
,
raise
POSException
.
StorageTransactionError
(
self
.
_transaction
,
trans
)
trans
)
def
history
(
self
,
oid
,
length
=
1
):
def
history
(
self
,
oid
,
size
=
1
):
"""Storage API: return a sequence of HistoryEntry objects.
"""Storage API: return a sequence of HistoryEntry objects.
"""
"""
return
self
.
_server
.
history
(
oid
,
length
)
return
self
.
_server
.
history
(
oid
,
size
)
def
record_iternext
(
self
,
next
=
None
):
def
record_iternext
(
self
,
next
=
None
):
"""Storage API: get the next database record.
"""Storage API: get the next database record.
...
...
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