summaryrefslogtreecommitdiff
path: root/lib/extensions.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/extensions.py')
-rw-r--r--lib/extensions.py3
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