Hello PySiders, First: big thanks to all the devs for their hard work. I am eager to port my application to PySide, although I expect there will be a few hurdles. I'm currently testing on Linux, with Windows and OSX in the near future. So here's my first hurdle:
>>> class Lock(QtCore.QMutex): >>> def tryLock(self, timeout=10): >>> return QtCore.QMutex.tryLock(self, timeout) >>> >>> l = Lock() >>> l.tryLock() Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<stdin>", line 3, in tryLock SystemError: ../Objects/methodobject.c:120: bad argument to internal function Have I done something wrong? It looks like a bug to me, but I though I'd post here first since I'm new to PySide. Luke
_______________________________________________ PySide mailing list [email protected] http://lists.openbossa.org/listinfo/pyside
