diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2010-10-14 00:54:16 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2010-11-05 09:34:49 +0000 |
commit | 2f29429e88151bd91228f05181075d95f4e9732c (patch) | |
tree | 02bfa8463e7fb4d4d17c1bc3c6323913cd861ba1 /lib/extensions.py | |
parent | f0f5f095c7fd7982c1f34528214df252cdebffc9 (diff) | |
download | psycopg2-2f29429e88151bd91228f05181075d95f4e9732c.tar.gz |
Expose the Xid object in the extension module.
Diffstat (limited to 'lib/extensions.py')
-rw-r--r-- | lib/extensions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions.py b/lib/extensions.py index 3fd9803..fca7973 100644 --- a/lib/extensions.py +++ b/lib/extensions.py @@ -56,7 +56,7 @@ try: except: pass -from _psycopg import adapt, adapters, encodings, connection, cursor, lobject +from _psycopg import adapt, adapters, encodings, connection, cursor, lobject, Xid from _psycopg import string_types, binary_types, new_type, register_type from _psycopg import ISQLQuote, Notify |