diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2015-02-08 11:27:10 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2015-02-08 11:27:10 +0000 |
commit | 7ea56b112e73081548e35ae27006e08e9189f896 (patch) | |
tree | 8c1bb0d5bc4a030ff76bb6a2ffcabec21c13a3fa /lib/extensions.py | |
parent | 61778238117babcead7bd3aaabdd92a84d69fad8 (diff) | |
download | psycopg2-7ea56b112e73081548e35ae27006e08e9189f896.tar.gz |
Make Column picklable on Python >= 3.3
Also expose the type from the extensions module, not from the main
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 71a92b9..216d8ad 100644 --- a/lib/extensions.py +++ b/lib/extensions.py @@ -58,7 +58,7 @@ except ImportError: from psycopg2._psycopg import adapt, adapters, encodings, connection, cursor, lobject, Xid from psycopg2._psycopg import string_types, binary_types, new_type, new_array_type, register_type -from psycopg2._psycopg import ISQLQuote, Notify, Diagnostics +from psycopg2._psycopg import ISQLQuote, Notify, Diagnostics, Column from psycopg2._psycopg import QueryCanceledError, TransactionRollbackError |