python - lo: Add types.array. - Mailing list pgsql-committers

From jwp@pgfoundry.org (James William Pye)
Subject python - lo: Add types.array.
Date
Msg-id 20071127154722.5E84917ADCE0@pgfoundry.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Add types.array.

This provides a Postgres'ish interface to array objects. Notably, IndexErrors do
not occur as they would with standard Python sequence types; None is returned as
NULL is returned in Postgres. Python's 0-based indexing and negative indexes are
used.

Notably, this type does not enforce consistent element types.

Modified Files:
--------------
    lo/postgresql:
        types.py (r1.2 -> r1.3)
        (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/lo/postgresql/types.py.diff?r1=1.2&r2=1.3)

pgsql-committers by date:

Previous
From: jwp@pgfoundry.org (James William Pye)
Date:
Subject: python - typ: Use a generator instead of a list for record_unpack.
Next
From: momjian@postgresql.org (Bruce Momjian)
Date:
Subject: pgsql: Add example of MONEY casting to numeric if locale is known.