[Python-Dev] Re: Change to sys.path[0] for Python 2.3 (original) (raw)

Martin v. Loewis martin@v.loewis.de
Tue, 27 Nov 2001 21:24:46 +0100


They work the same in that imports are satisfied from the items. sys.path[0] is the first directory string, sys.path[1:] are the remaining strings. Imports are satisfied from sys.path. The timing is currently as follows:

Now I got it. +1.

Martin