diff options
author | Oleksandr Shulgin <oleksandr.shulgin@zalando.de> | 2015-10-19 20:00:39 +0200 |
---|---|---|
committer | Oleksandr Shulgin <oleksandr.shulgin@zalando.de> | 2015-10-19 20:00:39 +0200 |
commit | 0bb81fc84811134bca70b59daa4661bd0697f2ff (patch) | |
tree | 4b66a805179645ffd6fbad36a8cc442e6b384602 /setup.py | |
parent | 7aea2cef6e42c961fadac61f19b570bdf8c61401 (diff) | |
download | psycopg2-0bb81fc84811134bca70b59daa4661bd0697f2ff.tar.gz |
Properly subclass ReplicationCursor on C level.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -466,7 +466,7 @@ sources = [ 'connection_int.c', 'connection_type.c', 'cursor_int.c', 'cursor_type.c', - 'replication_message_type.c', + 'replication_cursor_type.c', 'replication_message_type.c', 'diagnostics_type.c', 'error_type.c', 'lobject_int.c', 'lobject_type.c', 'notify_type.c', 'xid_type.c', @@ -482,7 +482,7 @@ depends = [ # headers 'config.h', 'pgtypes.h', 'psycopg.h', 'python.h', 'connection.h', 'cursor.h', 'diagnostics.h', 'error.h', 'green.h', 'lobject.h', - 'replication_message.h', + 'replication_cursor.h', 'replication_message.h', 'notify.h', 'pqpath.h', 'xid.h', 'libpq_support.h', 'win32_support.h', |