Info about versions history moved from code to docs

This commit is contained in:
Daniele Varrazzo 2012-09-22 02:08:21 +01:00
parent fa9393b587
commit 26cfdc1234
2 changed files with 6 additions and 6 deletions

View File

@ -229,6 +229,12 @@ requires no adapter registration.
.. autofunction:: register_composite
.. versionchanged:: 2.4.3
added support for array of composite types
.. versionchanged:: 2.4.6
added the *factory* parameter
.. autoclass:: CompositeCaster
.. automethod:: make

View File

@ -942,12 +942,6 @@ def register_composite(name, conn_or_curs, globally=False, factory=None):
it to :ref:`customize how to cast composite types <custom-composite>`
:return: the registered `CompositeCaster` or *factory* instance
responsible for the conversion
.. versionchanged:: 2.4.3
added support for array of composite types
.. versionchanged:: 2.4.6
added the *factory* parameter
"""
if factory is None:
factory = CompositeCaster