Commit 29a13a07 authored by Vincent Pelletier's avatar Vincent Pelletier

Use a less ambiguous wording in docstring.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1861 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 51d49fad
...@@ -263,9 +263,9 @@ class DatabaseManager(object): ...@@ -263,9 +263,9 @@ class DatabaseManager(object):
def getObjectHistory(self, oid, offset = 0, length = 1): def getObjectHistory(self, oid, offset = 0, length = 1):
"""Return a list of serials and sizes for a given object ID. """Return a list of serials and sizes for a given object ID.
The length specifies the maximum size of such a list. The first serial The length specifies the maximum size of such a list. Result starts
must be the last serial, and the list must be sorted in descending with latest serial, and the list must be sorted in descending order.
order. If there is no such object ID in a database, return None.""" If there is no such object ID in a database, return None."""
raise NotImplementedError raise NotImplementedError
def getTIDList(self, offset, length, num_partitions, partition_list): def getTIDList(self, offset, length, num_partitions, partition_list):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment