[PyQt] What is difference between partial and lambda in connect slot?

2011-08-28 Thread bluekyu
Hello. I have a question about partial and lambda in connect slot. I learned that partial and lambda can have arguments in connect slot. So, I usually use lambda function, however, it does not work well in some code. My example code: from

Re: [PyQt] What is difference between partial and lambda in connect slot?

2011-08-28 Thread Phil Thompson
On Sun, 28 Aug 2011 22:11:02 +0900, bluekyu bluekyu@gmail.com wrote: Hello. I have a question about partial and lambda in connect slot. I learned that partial and lambda can have arguments in connect slot. So, I usually use lambda function, however, it does not work well in some code.

Re: [PyQt] What is difference between partial and lambda in connect slot?

2011-08-28 Thread Vincent Vande Vyvre
Le 28/08/11 15:11, bluekyu a crit: Hello. I have a question about "partial" and "lambda" in connect slot. I learned that "partial" and "lambda" can have arguments in connect slot. So, I usually use lambda function, however, it does not