Zdravim,
hraju si ted se signaly a narazil jsem na tohle:

Python 2.5.2 (r252:60911, Aug  1 2008, 00:43:38) 
[GCC 4.3.1 20080507 (prerelease) [gcc-4_3-branch revision 135036]] on linux2
Type "help", "copyright", "credits" or "license" for more information.      
>>> from PyQt4 import QtCore                                     
>>> class b(QtCore.QObject):                                                
...    def __init__(self):                                                  
...       QtCore.QObject.__init__(self)                                     
...
>>> class a(QtCore.QObject):
...    def __init__(self):
...       QtCore.QObject.__init__(self)
...       self.signal = QtCore.SIGNAL("data(PyQt_PyObject)")
...       QtCore.QObject.connect(e, self.signal, self.data)
...    def data(inp):
...       print self, inp
...
>>> e = b()
>>> q = a()
>>> w = a()
>>> e.emit(q.signal)
Neoprávněný přístup do paměti (SIGSEGV)

Co delam spatne?
Dik Radek
_______________________________________________
Python mailing list
[email protected]
http://www.py.cz/mailman/listinfo/python

Odpovedet emailem