[issue2166] pydistutils.cfg won't be found on Windows

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider <[EMAIL PROTECTED]> added the comment: Closing as a duplicate of 1858. -- nosy: +jafo resolution: -> duplicate status: open -> closed __ Tracker <[EMAIL PROTECTED]> __

[issue2166] pydistutils.cfg won't be found on Windows

2008-03-19 Thread Sean Reifschneider
Changes by Sean Reifschneider <[EMAIL PROTECTED]>: -- priority: -> normal superseder: -> Make .pypirc handle multiple servers __ Tracker <[EMAIL PROTECTED]> __ __

[issue2166] pydistutils.cfg won't be found on Windows

2008-02-23 Thread Tarek Ziadé
Tarek Ziadé added the comment: ok, done in #1858 __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue2166] pydistutils.cfg won't be found on Windows

2008-02-23 Thread Christian Heimes
Christian Heimes added the comment: Please use os.path.expanduser(os.path.join("~", user_filename)) -- nosy: +tiran __ Tracker <[EMAIL PROTECTED]> __ __

[issue2166] pydistutils.cfg won't be found on Windows

2008-02-23 Thread Tarek Ziadé
Changes by Tarek Ziadé: -- components: +Distutils versions: +Python 3.0 __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Uns

[issue2166] pydistutils.cfg won't be found on Windows

2008-02-23 Thread Tarek Ziadé
New submission from Tarek Ziadé: Related to #1741: dist.py looks for the HOME environment variable to try to find the user's pydistutils.cfg. user_file = os.path.join(os.environ.get('HOME'), user_filename) It should look form HOMEDRIVE+HOMEPATH as well. -- messages: 62731 nosy: tarek