Python threads are easy (with example)
Tuesday, August 19th, 2008 Posted in Software development | 1 Comment »It's remarkably easy to spawn a Python thread. However, before doing so, I caution you that a Python thread is not the same thing as an OS thread. Python threads run within the Python interpreter, but the Python interpreter always ...
Fun with threads in Python and wxPython
Monday, August 11th, 2008 Posted in Software development | No Comments »I have finally gotten back to programming in the last couple of days. Our project has finally started to generate a lot of data, so I've been refactoring and improving my code that reads data stored in LabView binaries. Today ...