diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2010-10-06 01:09:17 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2010-11-05 09:34:47 +0000 |
commit | 0021e56d800dffbb7fa30fbb3349a1016456343e (patch) | |
tree | 77bbdecd0823693b8faf6b58977af9bbd2fa8fb7 /setup.py | |
parent | e863222b5c2d800c7cd5b72dac8efeaec0302e4f (diff) | |
download | psycopg2-0021e56d800dffbb7fa30fbb3349a1016456343e.tar.gz |
Added connection.xid() and related objects.
By James Henstridge on 2008-07-23.
Merged from lp:~jamesh/psycopg/two-phase-commit/revision/356
* psycopg/connection_type.c (psyco_conn_xid): add a
Connection.xid() method that instantiates Xid objects.
* psycopg/psycopgmodule.c (init_psycopg): initialise the Xid
object type.
* psycopg/xid.h:
* psycopg/xid_type.c: Implement a basic transaction ID object for
use in two phase commit.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -346,7 +346,7 @@ sources = [ 'psycopgmodule.c', 'pqpath.c', 'typecast.c', 'microprotocols.c', 'microprotocols_proto.c', 'connection_type.c', 'connection_int.c', 'cursor_type.c', 'cursor_int.c', - 'lobject_type.c', 'lobject_int.c', 'notify_type.c', + 'lobject_type.c', 'lobject_int.c', 'notify_type.c', 'xid_type.c', 'adapter_qstring.c', 'adapter_pboolean.c', 'adapter_binary.c', 'adapter_asis.c', 'adapter_list.c', 'adapter_datetime.c', 'adapter_pfloat.c', 'adapter_pdecimal.c', |