[issue4354] distutils.command.register is broken

2008-11-20 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Thanks for the patch. Committed as r67298. For some reason, the saved credentials won't be read back in. Not sure whether this is specific to 3.0, though, or part of the new PyPIRC handling. -- status: open -> closed __

[issue4354] distutils.command.register is broken

2008-11-20 Thread Christian Heimes
Christian Heimes <[EMAIL PROTECTED]> added the comment: The patch is fine with me. -- assignee: -> barry nosy: +barry, christian.heimes priority: -> release blocker resolution: -> accepted stage: -> commit review ___ Python tracker <[EMAIL PROTECT

[issue4354] distutils.command.register is broken

2008-11-19 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- nosy: +loewis ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing

[issue4354] distutils.command.register is broken

2008-11-19 Thread Hagen Fürstenau
Hagen Fürstenau <[EMAIL PROTECTED]> added the comment: Attached new patch without "sys". Added file: http://bugs.python.org/file12061/distutils_register_2.patch ___ Python tracker <[EMAIL PROTECTED]>

[issue4354] distutils.command.register is broken

2008-11-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: The patch looks good to me. You can however remove the "import sys": it is not needed. -- nosy: +amaury.forgeotdarc ___ Python tracker <[EMAIL PROTECTED]> _

[issue4354] distutils.command.register is broken

2008-11-19 Thread Hagen Fürstenau
New submission from Hagen Fürstenau <[EMAIL PROTECTED]>: The distutils command "register" has two problems with Python 3.0: 1. The authentication dialog crashes because of a problem with the functiopn raw_input defined there. 2. Uploading the data fails because of str/bytes confusion. The atta