]> git.pld-linux.org Git - packages/dbus.git/commitdiff
- fixed in sources
authorpaladine <paladine@pld-linux.org>
Wed, 24 Aug 2005 15:08:04 +0000 (15:08 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dbus-python_types.patch -> 1.2

dbus-python_types.patch [deleted file]

diff --git a/dbus-python_types.patch b/dbus-python_types.patch
deleted file mode 100644 (file)
index 7ac47db..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
---- dbus-0.35.2-old/python/dbus_bindings.pyx   2005-08-02 16:50:14.578553928 +0200
-+++ dbus-0.35.2/python/dbus_bindings.pyx       2005-08-02 16:49:21.336647928 +0200
-@@ -74,73 +74,73 @@
- class ObjectPath(str):
-     def __init__(self, value):
--        str.__init__(value)
-+        str.__init__(self, value)
- class ByteArray(str):
-     def __init__(self, value):
--        str.__init__(value)
-+        str.__init__(self, value)
- class Signature(str):
-     def __init__(self, value):
--        str.__init__(value)
-+        str.__init__(self, value)
- class Byte(int):
-     def __init__(self, value):
--        int.__init__(value)
-+        int.__init__(self, value)
- class Boolean(int):
-     def __init__(self, value):
--        int.__init__(value)
-+        int.__init__(self, value)
- class Int16(int):
-     def __init__(self, value):
--        int.__init__(value)
-+        int.__init__(self, value)
- class UInt16(int):
-     def __init__(self, value):
-         if value < 0:
-             raise TypeError('Unsigned integers must not have a negitive value') 
--        int.__init__(value)
-+        int.__init__(self, value)
- class Int32(int):
-     def __init__(self, value):
--        int.__init__(value)
-+        int.__init__(self, value)
- class UInt32(long):
-     def __init__(self, value):
-         if value < 0:
-             raise TypeError('Unsigned integers must not have a negitive value') 
--        long.__init__(value)
-+        long.__init__(self, value)
- class Int64(long):
-     def __init__(self, value):
--        long.__init__(value)
-+        long.__init__(self, value)
- class UInt64(long):
-     def __init__(self, value):
-         if value < 0:
-             raise TypeError('Unsigned integers must not have a negitive value') 
--        long.__init__(value)
-+        long.__init__(self, value)
- class Double(float):
-     def __init__(self, value):
--        float.__init__(self, value)
-+        float.__init__(self, self, value)
- class String(str):
-     def __init__(self, value):
--        str.__init__(value)
-+        str.__init__(self, value)
- class Array(list):
-     def __init__(self, value):
--        list.__init__(value)
-+        list.__init__(self, value)
- class Struct(tuple):
-     def __init__(self, value):
--        tuple.__init__(value)
-+        tuple.__init__(self, value)
- class Dictionary(dict):
-     def __init__(self, value):
--        dict.__init__(value)
-+        dict.__init__(self, value)
- #forward delcerations
- cdef class Message
This page took 0.133816 seconds and 4 git commands to generate.