mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-02-14 07:30:31 +01:00
python/dbus_bindings.pyx.in (PendingCall::get_reply):
s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
This commit is contained in:
parent
f9a7bcc2fc
commit
d3f1b8bc89
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2005-02-23 John (J5) Palmieri <johnp@redhat.com>
|
||||
|
||||
* python/dbus_bindings.pyx.in (PendingCall::get_reply):
|
||||
s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
|
||||
|
||||
2005-02-21 Colin Walters <walters@verbum.org>
|
||||
|
||||
* dbus/dbus-test-main.c (main): Take optional specific test
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@
|
|||
# where python conditionals have a ( ) around them, thus violating
|
||||
# PEP-8 were written by the lame wannabe python programmer seth
|
||||
|
||||
#FIXME: find memory leaks that I am sure exist
|
||||
|
||||
#include "dbus_h_wrapper.h"
|
||||
|
||||
cdef extern from "stdlib.h":
|
||||
|
|
@ -398,7 +400,7 @@ cdef class PendingCall:
|
|||
def get_reply(self):
|
||||
cdef Message message
|
||||
message = Message(_create=0)
|
||||
message._set_msg(dbus_pending_call_get_reply(self.pending_call))
|
||||
message._set_msg(dbus_pending_call_steal_reply(self.pending_call))
|
||||
return message
|
||||
|
||||
def block(self):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue