On Sunday 16 March 2008 21:58:02 Steven Yi wrote: > These lines look mal-indented and the zipDependencies line seems like > it needs to be called for either of those branches of code there, but > it won't work unless duplicated for both branches or else counterpoint > be defined as a var on the same indentation level as zipDependencies. Python appears to leak variables, so this shouldn't matter: if True: a = 2 else: a = 1 print a This would print 2. -- Felipe Sateler