On Tue, 2005-06-28 at 11:24 +0200, Giuseppe Bilotta wrote: > +import sys, os > +sys.path.remove(os.getcwd()) This will throw an exception if os.getcwd() isn't in sys.path, so it will break all non-Windows platforms. <b