Can anyone explain this code below:
import sys
import os
if __name__ == '__main__':
sys.path.insert(0, "..")
else:
sys.path.insert(0, os.path.join(
os.path.split(__file__)[0], '..'))
_______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor
