Package: python-kde3
Version: 3.15.2+20060422-3
Severity: important
Tags: patch
python-kde3-3.15.2+20060422/sip/kio/kmimetype.sip contains reserved
word 'is' for Python, which affects 'kphotobymail' package (and may be
more packages in future..)
I have attached simple patch for that. I will be glad if this will be
added in next upload.
Thanks.
--
Regards,
----------------------------------------------------------
Kartik Mistry | kartikmistry.org
0xD1028C8D | kartikm.wordpress.com
-----------------------------------------------------------
--- python-kde3-3.15.2+20060422/sip/kio/kmimetype.sip.orig 2007-01-22
13:46:42.000000000 +0530
+++ python-kde3-3.15.2+20060422/sip/kio/kmimetype.sip 2007-01-22
13:47:48.000000000 +0530
@@ -105,7 +105,7 @@
%If ( KDE_3_2_0 - )
static KMimeType::Ptr defaultMimeTypePtr ();
QString parentMimeType () const;
- bool is (const QString&) const;
+ bool is (const QString&) const /PyName=is_/; //'is' is a
reserved keyword in python;
static KMimeType::Ptr diagnoseFileName (const QString&, QString&);
%End