Thread lag
Hi, Here is a small class I use in my GTK application, to do some job in a thread.: class ThreadInterface: def __init__(self, func, func_args, callback, callback_args): '''Call a function in a thread and then call callback''' def thread_function(func, func_args, callback, callback_
compare unicode to non-unicode strings
how could I test that those 2 strings are the same: 'séd' (repr is 's\\xc3\\xa9d') u'séd' (repr is u's\\xe9d') -- http://mail.python.org/mailman/listinfo/python-list