Skip to content

Commit

Permalink
Worked on Python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Jul 13, 2018
1 parent e6da266 commit ee17d7c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pypff/pypff_message.c
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ PyObject *pypff_message_get_client_submit_time(
Py_BEGIN_ALLOW_THREADS

result = libpff_message_get_client_submit_time(
pypff_item->record_set,
pypff_item->item,
&filetime,
&error );

Expand Down Expand Up @@ -797,7 +797,7 @@ PyObject *pypff_message_get_client_submit_time_as_integer(
Py_BEGIN_ALLOW_THREADS

result = libpff_message_get_client_submit_time(
pypff_item->record_set,
pypff_item->item,
&filetime,
&error );

Expand Down Expand Up @@ -856,7 +856,7 @@ PyObject *pypff_message_get_delivery_time(
Py_BEGIN_ALLOW_THREADS

result = libpff_message_get_delivery_time(
pypff_item->record_set,
pypff_item->item,
&filetime,
&error );

Expand Down Expand Up @@ -915,7 +915,7 @@ PyObject *pypff_message_get_delivery_time_as_integer(
Py_BEGIN_ALLOW_THREADS

result = libpff_message_get_delivery_time(
pypff_item->record_set,
pypff_item->item,
&filetime,
&error );

Expand Down Expand Up @@ -974,7 +974,7 @@ PyObject *pypff_message_get_creation_time(
Py_BEGIN_ALLOW_THREADS

result = libpff_message_get_creation_time(
pypff_item->record_set,
pypff_item->item,
&filetime,
&error );

Expand Down Expand Up @@ -1033,7 +1033,7 @@ PyObject *pypff_message_get_creation_time_as_integer(
Py_BEGIN_ALLOW_THREADS

result = libpff_message_get_creation_time(
pypff_item->record_set,
pypff_item->item,
&filetime,
&error );

Expand Down Expand Up @@ -1092,7 +1092,7 @@ PyObject *pypff_message_get_modification_time(
Py_BEGIN_ALLOW_THREADS

result = libpff_message_get_modification_time(
pypff_item->record_set,
pypff_item->item,
&filetime,
&error );

Expand Down Expand Up @@ -1151,7 +1151,7 @@ PyObject *pypff_message_get_modification_time_as_integer(
Py_BEGIN_ALLOW_THREADS

result = libpff_message_get_modification_time(
pypff_item->record_set,
pypff_item->item,
&filetime,
&error );

Expand Down Expand Up @@ -1771,7 +1771,7 @@ PyObject *pypff_message_get_attachment_by_index(
goto on_error;
}
sub_item_object = pypff_item_new(
&pypff_message_type_object,
&pypff_attachment_type_object,
sub_item,
(PyObject *) ( (pypff_item_t *) pypff_item )->parent_object );

Expand Down

0 comments on commit ee17d7c

Please sign in to comment.