]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
python/dbus_bindings.pyx.in (PendingCall::get_reply):
authorJohn (J5) Palmieri <johnp@redhat.com>
Wed, 23 Feb 2005 19:36:24 +0000 (19:36 +0000)
committerJohn (J5) Palmieri <johnp@redhat.com>
Wed, 23 Feb 2005 19:36:24 +0000 (19:36 +0000)
s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply

ChangeLog
python/dbus_bindings.pyx.in

index b0c045b70324fcb00a5e3f03b69818bf8c3f913b..5b7b4bcc091e54b767269f0940e8449113645b96 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index a1c4e696c0a98e78c884600638cd5ed93de56756..6681c4587f64d78a681fd1f19c60dabfed5c93b3 100644 (file)
@@ -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):