fixed typos

svn: r12937
This commit is contained in:
Raphael Ackermann 2009-08-09 22:43:43 +00:00
parent 76d8c108b6
commit b33a53e487
6 changed files with 12 additions and 12 deletions

View File

@ -2522,7 +2522,7 @@ class GrampsDbBase(Callback):
""" """
Find all objects that hold a reference to the object handle. Find all objects that hold a reference to the object handle.
Returns an interator over alist of (class_name, handle) tuples. Returns an iterator over a list of (class_name, handle) tuples.
@param handle: handle of the object to search for. @param handle: handle of the object to search for.
@type handle: database handle @type handle: database handle
@ -2530,7 +2530,7 @@ class GrampsDbBase(Callback):
Default: None means include all classes. Default: None means include all classes.
@type include_classes: list of class names @type include_classes: list of class names
This default implementation does a sequencial scan through all This default implementation does a sequential scan through all
the primary object databases and is very slow. Backends can the primary object databases and is very slow. Backends can
override this method to provide much faster implementations that override this method to provide much faster implementations that
make use of additional capabilities of the backend. make use of additional capabilities of the backend.

View File

@ -1307,7 +1307,7 @@ class DbBase(object):
def find_backlink_handles(self, handle, include_classes=None): def find_backlink_handles(self, handle, include_classes=None):
""" """
Find all objects that hold a reference to the object handle. Find all objects that hold a reference to the object handle.
Returns an interator over alist of (class_name, handle) tuples. Returns an iterator over a list of (class_name, handle) tuples.
@param handle: handle of the object to search for. @param handle: handle of the object to search for.
@type handle: database handle @type handle: database handle
@ -1315,7 +1315,7 @@ class DbBase(object):
Default: None means include all classes. Default: None means include all classes.
@type include_classes: list of class names @type include_classes: list of class names
This default implementation does a sequencial scan through all This default implementation does a sequential scan through all
the primary object databases and is very slow. Backends can the primary object databases and is very slow. Backends can
override this method to provide much faster implementations that override this method to provide much faster implementations that
make use of additional capabilities of the backend. make use of additional capabilities of the backend.

View File

@ -398,7 +398,7 @@ class FilterProxyDb(ProxyDbBase):
def find_backlink_handles(self, handle, include_classes=None): def find_backlink_handles(self, handle, include_classes=None):
""" """
Find all objects that hold a reference to the object handle. Find all objects that hold a reference to the object handle.
Returns an interator over alist of (class_name, handle) tuples. Returns an iterator over a list of (class_name, handle) tuples.
@param handle: handle of the object to search for. @param handle: handle of the object to search for.
@type handle: database handle @type handle: database handle
@ -406,7 +406,7 @@ class FilterProxyDb(ProxyDbBase):
Default: None means include all classes. Default: None means include all classes.
@type include_classes: list of class names @type include_classes: list of class names
This default implementation does a sequencial scan through all This default implementation does a sequential scan through all
the primary object databases and is very slow. Backends can the primary object databases and is very slow. Backends can
override this method to provide much faster implementations that override this method to provide much faster implementations that
make use of additional capabilities of the backend. make use of additional capabilities of the backend.

View File

@ -286,7 +286,7 @@ class LivingProxyDb(ProxyDbBase):
def find_backlink_handles(self, handle, include_classes=None): def find_backlink_handles(self, handle, include_classes=None):
""" """
Find all objects that hold a reference to the object handle. Find all objects that hold a reference to the object handle.
Returns an interator over alist of (class_name, handle) tuples. Returns an iterator over a list of (class_name, handle) tuples.
@param handle: handle of the object to search for. @param handle: handle of the object to search for.
@type handle: database handle @type handle: database handle
@ -294,7 +294,7 @@ class LivingProxyDb(ProxyDbBase):
Default: None means include all classes. Default: None means include all classes.
@type include_classes: list of class names @type include_classes: list of class names
This default implementation does a sequencial scan through all This default implementation does a sequential scan through all
the primary object databases and is very slow. Backends can the primary object databases and is very slow. Backends can
override this method to provide much faster implementations that override this method to provide much faster implementations that
make use of additional capabilities of the backend. make use of additional capabilities of the backend.

View File

@ -595,7 +595,7 @@ class ProxyDbBase(DbBase):
def find_backlink_handles(self, handle, include_classes=None): def find_backlink_handles(self, handle, include_classes=None):
""" """
Find all objects that hold a reference to the object handle. Find all objects that hold a reference to the object handle.
Returns an interator over alist of (class_name, handle) tuples. Returns an iterator over a list of (class_name, handle) tuples.
@param handle: handle of the object to search for. @param handle: handle of the object to search for.
@type handle: database handle @type handle: database handle
@ -603,7 +603,7 @@ class ProxyDbBase(DbBase):
Default: None means include all classes. Default: None means include all classes.
@type include_classes: list of class names @type include_classes: list of class names
This default implementation does a sequencial scan through all This default implementation does a sequential scan through all
the primary object databases and is very slow. Backends can the primary object databases and is very slow. Backends can
override this method to provide much faster implementations that override this method to provide much faster implementations that
make use of additional capabilities of the backend. make use of additional capabilities of the backend.

View File

@ -260,7 +260,7 @@ class ReferencedProxyDb(ProxyDbBase):
def find_backlink_handles(self, handle, include_classes=None): def find_backlink_handles(self, handle, include_classes=None):
""" """
Find all objects that hold a reference to the object handle. Find all objects that hold a reference to the object handle.
Returns an interator over alist of (class_name, handle) tuples. Returns an iterator over a list of (class_name, handle) tuples.
@param handle: handle of the object to search for. @param handle: handle of the object to search for.
@type handle: database handle @type handle: database handle
@ -268,7 +268,7 @@ class ReferencedProxyDb(ProxyDbBase):
Default: None means include all classes. Default: None means include all classes.
@type include_classes: list of class names @type include_classes: list of class names
This default implementation does a sequencial scan through all This default implementation does a sequential scan through all
the primary object databases and is very slow. Backends can the primary object databases and is very slow. Backends can
override this method to provide much faster implementations that override this method to provide much faster implementations that
make use of additional capabilities of the backend. make use of additional capabilities of the backend.