The ".py" library files (that you want to make available globally for the Python applications) should go to "c:\resource", use e.g. ".pkg" (search your S60 SDK with keyword "pkg") files to transfer the files there
OK, although Python clearly thinks it should be checking E:\python\lib for modules:
Code:
>>> import sys, os
>>> sys.path
['c:\\private\\f0201515', 'c:\\resource', u'e:\\python\\lib']
>>> os.listdir(sys.path[-1])
['rijndael.py', 'testimport.py', 'testimport.pyc']
>>> import testimport
Traceback (most recent call last):
File "<console>", line 1, in ?
ImportError: No module named testimport
>>> import rijndael
Traceback (most recent call last):
File "<console>", line 1, in ?
ImportError: No module named rijndael
>>>
Has core Python functionality been changed so much that sys.path is no longer honored?
-Ben