summaryrefslogtreecommitdiff
path: root/psycopg/replication_message_type.c
diff options
context:
space:
mode:
authorOleksandr Shulgin <oleksandr.shulgin@zalando.de>2016-04-21 15:32:05 +0200
committerOleksandr Shulgin <oleksandr.shulgin@zalando.de>2016-04-21 15:32:05 +0200
commitd5443c65fde6cae87a1dcd901f31b6cdca7a1811 (patch)
treefa9fbe1c281ca5806e5297741d0e94c446194c7c /psycopg/replication_message_type.c
parenta7887fab078802530edff9642f9697cf96412dc8 (diff)
downloadpsycopg2-d5443c65fde6cae87a1dcd901f31b6cdca7a1811.tar.gz
Fix TODOs in ReplicationMessage inline docs
Diffstat (limited to 'psycopg/replication_message_type.c')
-rw-r--r--psycopg/replication_message_type.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/psycopg/replication_message_type.c b/psycopg/replication_message_type.c
index f607d2b..358d149 100644
--- a/psycopg/replication_message_type.c
+++ b/psycopg/replication_message_type.c
@@ -125,15 +125,15 @@ psyco_replmsg_get_send_time(replicationMessageObject *self)
static struct PyMemberDef replicationMessageObject_members[] = {
{"cursor", T_OBJECT, OFFSETOF(cursor), READONLY,
- "TODO"},
+ "Related ReplcationCursor object."},
{"payload", T_OBJECT, OFFSETOF(payload), READONLY,
- "TODO"},
+ "The actual message data."},
{"data_size", T_INT, OFFSETOF(data_size), READONLY,
- "TODO"},
+ "Raw size of the message data in bytes."},
{"data_start", T_ULONGLONG, OFFSETOF(data_start), READONLY,
- "TODO"},
+ "LSN position of the start of this message."},
{"wal_end", T_ULONGLONG, OFFSETOF(wal_end), READONLY,
- "TODO"},
+ "LSN position of the current end of WAL on the server."},
{NULL}
};