diff options
| author | James Henstridge <james@jamesh.id.au> | 2008-05-05 10:37:24 +0800 |
|---|---|---|
| committer | James Henstridge <james@jamesh.id.au> | 2008-05-05 10:37:24 +0800 |
| commit | 938c456cee54e5642491f4214c23aee293df791e (patch) | |
| tree | 8c486596f838e44ee89413bbf6ca348fc71a7f14 /lib/extensions.py | |
| parent | fedfd53d544d7d1083703705c67637bd401d69e3 (diff) | |
| parent | 31ef9355c21a45d62fdb01293863fe26cd33109a (diff) | |
| download | psycopg2-938c456cee54e5642491f4214c23aee293df791e.tar.gz | |
Merge changes from psycopg2/trunk via psycopg2.r243.
Diffstat (limited to 'lib/extensions.py')
| -rw-r--r-- | lib/extensions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/extensions.py b/lib/extensions.py index a2bc869..99c7201 100644 --- a/lib/extensions.py +++ b/lib/extensions.py @@ -4,6 +4,7 @@ This module holds all the extensions to the DBAPI-2.0 provided by psycopg. - `connection` -- the new-type inheritable connection class - `cursor` -- the new-type inheritable cursor class +- `lobject` -- the new-type inheritable large object class - `adapt()` -- exposes the PEP-246_ compatible adapting mechanism used by psycopg to adapt Python types to PostgreSQL ones @@ -38,7 +39,7 @@ try: except: pass -from _psycopg import adapt, adapters, encodings, connection, cursor +from _psycopg import adapt, adapters, encodings, connection, cursor, lobject from _psycopg import string_types, binary_types, new_type, register_type from _psycopg import ISQLQuote |
