Am 15.03.2012 11:44 schrieb Kiuhnm: > Let's try that. > Show me an example of "list comprehensions" and "with" (whatever they are). with open("filename", "w") as f: f.write(stuff) with lock: do_something_exclusively() Thomas