Re: [PyQt] PyQt should not ignore functools.partial signature

2011-10-14 Thread Phil Thompson
On Fri, 14 Oct 2011 11:10:03 +0200, Luper Rouch wrote: > 2011/10/13 Phil Thompson > >> On Wed, 12 Oct 2011 15:57:17 +0200, Luper Rouch >> wrote: >> > PyQt seems to ignore the signature of functools.partial objects (the >> 'args' >> > and 'keywords' attributes [1]), when connecting a callable. H

Re: [PyQt] PyQt should not ignore functools.partial signature

2011-10-14 Thread Luper Rouch
2011/10/13 Phil Thompson > On Wed, 12 Oct 2011 15:57:17 +0200, Luper Rouch > wrote: > > PyQt seems to ignore the signature of functools.partial objects (the > 'args' > > and 'keywords' attributes [1]), when connecting a callable. Here is an > > example demonstrating the problem : > > > > import

Re: [PyQt] PyQt should not ignore functools.partial signature

2011-10-13 Thread Phil Thompson
On Wed, 12 Oct 2011 15:57:17 +0200, Luper Rouch wrote: > PyQt seems to ignore the signature of functools.partial objects (the 'args' > and 'keywords' attributes [1]), when connecting a callable. Here is an > example demonstrating the problem : > > import functools > from PyQt4.QtCore import QObje

[PyQt] PyQt should not ignore functools.partial signature

2011-10-12 Thread Luper Rouch
PyQt seems to ignore the signature of functools.partial objects (the 'args' and 'keywords' attributes [1]), when connecting a callable. Here is an example demonstrating the problem : import functools from PyQt4.QtCore import QObject, pyqtSignal class Sender(QObject): hello = pyqtSignal(bool)