On Fri, 25 Jul 2008 17:41:22 -0400, Darren Dale <[EMAIL PROTECTED]> wrote: > I use a library that provides rudimentary thread safety of its objects and > file > I/O using threading.RLock from the python standard library. Could anyone > tell > me if PyQt4's QThreads are compatible with these recursive locks?
Other than the fact that they will both be implemented using the same OS primitives, Python's and Qt's threading know nothing about each other. Phil _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
