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
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
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 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)