[IMP] remove docstring for cr, uid following odo review

bzr revid: xmo@openerp.com-20121008131407-5hnxkn17lycfoqzu
This commit is contained in:
Xavier Morel 2012-10-08 15:14:07 +02:00
parent 1a54bd9e4b
commit 350d365ba0
2 changed files with 0 additions and 9 deletions

View File

@ -61,8 +61,6 @@ class ir_fields_converter(orm.Model):
it returns. The handling of a warning at the upper levels is the same
as ``ValueError`` above.
:param cr: openerp cursor
:param uid: ID of user calling the converter
:param column: column object to generate a value for
:type column: :class:`fields._column`
:param type fromtype: type to convert to something fitting for ``column``
@ -183,8 +181,6 @@ class ir_fields_converter(orm.Model):
""" Finds a database id for the reference ``value`` in the referencing
subfield ``subfield`` of the provided column of the provided model.
:param cr: OpenERP cursor
:param uid: OpenERP user id
:param model: model to which the column belongs
:param column: relational column for which references are provided
:param subfield: a relational subfield allowing building of refs to

View File

@ -1310,8 +1310,6 @@ class BaseModel(object):
the same order they were extracted from the file. They can be passed
directly to :meth:`~read`
:param cr: cursor for the request
:param int uid: ID of the user attempting the data import
:param fields: list of fields to import, at the same index as the corresponding data
:type fields: list(str)
:param data: row-major matrix of data to import
@ -1377,8 +1375,6 @@ class BaseModel(object):
* None is the name_get for the record (to use with name_create/name_search)
* "id" is the External ID for the record
* ".id" is the Database ID for the record
:param ImportLogger logger:
"""
columns = dict((k, v.column) for k, v in self._all_columns.iteritems())
# Fake columns to avoid special cases in extractor
@ -1448,7 +1444,6 @@ class BaseModel(object):
strings) into forms which can be written to the database (via
self.create or (ir.model.data)._update)
:param ImportLogger parent_logger:
:returns: a list of triplets of (id, xid, record)
:rtype: list((int|None, str|None, dict))
"""