| From: | jwp(at)pgfoundry(dot)org (James William Pye) |
|---|---|
| To: | pgsql-committers(at)postgresql(dot)org |
| Subject: | python - lo: Add types.array. |
| Date: | 2007-11-27 15:47:22 |
| Message-ID: | 20071127154722.5E84917ADCE0@pgfoundry.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | 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)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Bruce Momjian | 2007-11-27 16:46:36 | pgsql: Add example of MONEY casting to numeric if locale is known. |
| Previous Message | James William Pye | 2007-11-27 15:32:29 | python - typ: Use a generator instead of a list for record_unpack. |