Dropped reference to release 2.3.3 in the docs

This commit is contained in:
Daniele Varrazzo 2011-02-15 11:00:08 +00:00
parent c1fe0b675a
commit d4eb28aed5
4 changed files with 7 additions and 7 deletions

View File

@ -528,7 +528,7 @@ The ``connection`` class
.. versionadded:: 2.0.8
.. versionchanged:: 2.3.3 added ``b`` and ``t`` mode and unicode
.. versionchanged:: 2.4 added ``b`` and ``t`` mode and unicode
support.

View File

@ -174,7 +174,7 @@ The ``cursor`` class
Use the most specific of the typecasters registered by
`~psycopg2.extensions.register_type()`.
.. versionadded:: 2.3.3
.. versionadded:: 2.4
.. extension::
@ -208,7 +208,7 @@ The ``cursor`` class
(2, None, 'dada')
(3, 42, 'bar')
.. versionchanged:: 2.3.3
.. versionchanged:: 2.4
iterating over a :ref:`named cursor <server-side-cursors>`
fetches `~cursor.arraysize` records at time from the backend.
Previously only one record was fetched per roundtrip, resulting
@ -315,7 +315,7 @@ The ``cursor`` class
you really want to retrieve one record at time from the backend use
`fetchone()` in a loop.
.. versionchanged:: 2.3.3
.. versionchanged:: 2.4
`!arraysize` used in named cursor iteration.

View File

@ -63,7 +63,7 @@ functionalities defined by the |DBAPI|_.
`connection.encoding`) if the file was open in ``t`` mode, a bytes
string for ``b`` mode.
.. versionchanged:: 2.3.3
.. versionchanged:: 2.4
added Unicode support.
.. method:: write(str)
@ -72,7 +72,7 @@ functionalities defined by the |DBAPI|_.
written. Unicode strings are encoded in the `connection.encoding`
before writing.
.. versionchanged:: 2.3.3
.. versionchanged:: 2.4
added Unicode support.
.. method:: export(file_name)

View File

@ -165,7 +165,7 @@ can be enabled using the `register_hstore()` function.
Composite types casting
^^^^^^^^^^^^^^^^^^^^^^^
.. versionadded:: 2.3.3
.. versionadded:: 2.4
Using `register_composite()` it is possible to cast a PostgreSQL composite
type (e.g. created with |CREATE TYPE|_ command) into a Python named tuple, or