[issue4394] make the storage of the password optional in .pypirc (using the prompt)

2009-01-08 Thread Tarek Ziadé
Tarek Ziadé added the comment: done in r68415 -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue4394] make the storage of the password optional in .pypirc (using the prompt)

2009-01-08 Thread Tarek Ziadé
Tarek Ziadé added the comment: Ok, I had one +1 from distutils-SIG, so I am updating this patch to commit it in 2.7 and 3.1. -- versions: -Python 3.0 ___ Python tracker ___

[issue4394] make the storage of the password optional in .pypirc (using the prompt)

2009-01-04 Thread Tarek Ziadé
Tarek Ziadé added the comment: I have fixed issue4400, and I am back at work for this feature. I will propose it in Distutils-SIG to see what people think. -- assignee: -> tarek ___ Python tracker __

[issue4394] make the storage of the password optional in .pypirc (using the prompt)

2008-11-23 Thread Tarek Ziadé
Tarek Ziadé <[EMAIL PROTECTED]> added the comment: Ok, I wrote a patch for the problem you mentioned in http://bugs.python.org/issue4400 ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue4394] make the storage of the password optional in .pypirc (using the prompt)

2008-11-23 Thread Tarek Ziadé
Tarek Ziadé <[EMAIL PROTECTED]> added the comment: I could reproduce it under 2.6, the problem is located at distutils.config.DEFAULT_PYPIRC the default structure is wrong there, I'll add a ticket with a patch and a test right away ___ Python tracker <[EMAI

[issue4394] make the storage of the password optional in .pypirc (using the prompt)

2008-11-23 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Here is what I did: 1. I started with no pypirc 2. I ran register, it asked me for username, password 3. I chose to save it, it created a .pypirc 4. I ran register again, it asked me again for username, password, even though this was saved al

[issue4394] make the storage of the password optional in .pypirc (using the prompt)

2008-11-23 Thread Tarek Ziadé
Tarek Ziadé <[EMAIL PROTECTED]> added the comment: can you provide me a scenario to reproduce it ? -> did you have a .pypirc already with no password, or no .pypirc, etc.. ___ Python tracker <[EMAIL PROTECTED]>

[issue4394] make the storage of the password optional in .pypirc (using the prompt)

2008-11-23 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: According to my tests, something is hosed with password saving in the register command for 3.0 already: the saved password doesn't seem to be used. Before this patch is considered, the other problem should be resolved (but isn't yet reported

[issue4394] make the storage of the password optional in .pypirc (using the prompt)

2008-11-23 Thread Tarek Ziadé
New submission from Tarek Ziadé <[EMAIL PROTECTED]>: Right now you HAVE to store a clear text password in .pypirc. But this should not be necessary since the "register" command does a getpass.getpass call to get the password from the prompt and use it to authenticate to pypi. So what do we miss