This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pmpp
Recipients ksriram, pmpp
Date 2018-12-02.10:35:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543746910.04.0.788709270274.issue35375@psf.upfronthosting.co.za>
In-reply-to
Content
hi you are obsverving that because current working directory is set *first* in sys.path as a commodity

you can avoid that with

import sys,os
sys.path.remove( os.getcwd() )

at the start of your program. 

otherwise usually it is wise to put user module in a package and choose its name with care.
History
Date User Action Args
2018-12-02 10:35:10pmppsetrecipients: + pmpp, ksriram
2018-12-02 10:35:10pmppsetmessageid: <1543746910.04.0.788709270274.issue35375@psf.upfronthosting.co.za>
2018-12-02 10:35:10pmpplinkissue35375 messages
2018-12-02 10:35:09pmppcreate