summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'kde-base/dcoppython/files/dcoppython-3.5.5-python-2.5-compat.diff')
-rw-r--r--kde-base/dcoppython/files/dcoppython-3.5.5-python-2.5-compat.diff11
1 files changed, 11 insertions, 0 deletions
diff --git a/kde-base/dcoppython/files/dcoppython-3.5.5-python-2.5-compat.diff b/kde-base/dcoppython/files/dcoppython-3.5.5-python-2.5-compat.diff
new file mode 100644
index 000000000000..2b3060710719
--- /dev/null
+++ b/kde-base/dcoppython/files/dcoppython-3.5.5-python-2.5-compat.diff
@@ -0,0 +1,11 @@
+--- dcoppython/shell/marshaller.cpp 2005/07/26 18:54:59 438982
++++ dcoppython/shell/marshaller.cpp 2006/10/03 15:28:22 592000
+@@ -124,7 +124,7 @@
+ if (!PyDict_Check(obj)) return false;
+
+
+- int c=0;
++ ssize_t c=0;
+ PyObject *key, *val;
+ while (PyDict_Next(obj, &c, &key, &val)==1)
+ if (!key_type.isMarshallable(key) ||