Issue1741
Created on 2008-01-06 10:42 by gerdus, last changed 2008-03-20 00:30 by jafo.
| msg59353 (view) |
Author: Gerdus van Zyl (gerdus) |
Date: 2008-01-06 10:45 |
|
register.py and upload.py both can't find the .pypirc on my system since
there is no HOME environment variable.
currently:
if os.environ.has_key('HOME'):
rc = os.path.join(os.environ['HOME'], '.pypirc')
if os.path.exists(rc):
works for me if changed to:
rc = os.path.expanduser('~/.pypirc')
if os.path.exists(rc):
|
| msg59354 (view) |
Author: Gerdus van Zyl (gerdus) |
Date: 2008-01-06 10:46 |
|
Just to clarify I am using Windows XP
|
| msg59429 (view) |
Author: Guido van Rossum (gvanrossum) |
Date: 2008-01-07 04:14 |
|
Bug day candidate? 2.5.2 backport candidate.
|
| msg62730 (view) |
Author: Tarek Ziadé (tarek) |
Date: 2008-02-23 14:09 |
|
Fixed by #1858 patch
|
| msg64132 (view) |
Author: Sean Reifschneider (jafo) |
Date: 2008-03-20 00:16 |
|
I'm closing this as a duplicate of #1858.
|
|
| Date |
User |
Action |
Args |
| 2008-03-20 00:30:36 | jafo | set | superseder: Make .pypirc handle multiple servers |
| 2008-03-20 00:16:56 | jafo | set | status: open -> closed nosy:
+ jafo resolution: duplicate messages:
+ msg64132 |
| 2008-02-23 14:09:24 | tarek | set | nosy:
+ tarek messages:
+ msg62730 |
| 2008-01-12 01:06:21 | akuchling | set | keywords:
+ easy |
| 2008-01-07 04:14:06 | gvanrossum | set | nosy:
+ gvanrossum messages:
+ msg59429 |
| 2008-01-06 13:41:07 | christian.heimes | set | priority: normal type: behavior versions:
+ Python 2.6 |
| 2008-01-06 10:46:21 | gerdus | set | messages:
+ msg59354 |
| 2008-01-06 10:45:19 | gerdus | set | messages:
+ msg59353 |
| 2008-01-06 10:42:25 | gerdus | create | |
|