[issue3748] platform.architecture() prints bogus message on windows

2008-09-02 Thread Hirokazu Yamamoto
Hirokazu Yamamoto <[EMAIL PROTECTED]> added the comment: Well, should I backport this to release25-maint branch? (If accepted, issue3719 as well) ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3748] platform.architecture() prints bogus message on windows

2008-09-01 Thread Hirokazu Yamamoto
Hirokazu Yamamoto <[EMAIL PROTECTED]> added the comment: Thanks, fixed in r66104(trunk) and r66106(py3k) -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue3748] platform.architecture() prints bogus message on windows

2008-09-01 Thread Marc-Andre Lemburg
Marc-Andre Lemburg <[EMAIL PROTECTED]> added the comment: Looks good. Could you apply it to both trunk and the py3k branch ?! Mark it "Reviewed by Marc-Andre Lemburg" to keep folks happy ;-) ___ Python tracker <[EMAIL PROTECTED]>

[issue3748] platform.architecture() prints bogus message on windows

2008-09-01 Thread Hirokazu Yamamoto
Hirokazu Yamamoto <[EMAIL PROTECTED]> added the comment: I've attached patch. (trunk) >BTW: I assume you are running this on win32, right ? Yes, I'm running win2k. -- assignee: lemburg -> keywords: +patch versions: -Python 2.6 Added file: http://bugs.python.org/file11325/fix.patch _

[issue3748] platform.architecture() prints bogus message on windows

2008-09-01 Thread Marc-Andre Lemburg
Changes by Marc-Andre Lemburg <[EMAIL PROTECTED]>: -- assignee: -> lemburg ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-l

[issue3748] platform.architecture() prints bogus message on windows

2008-09-01 Thread Marc-Andre Lemburg
Marc-Andre Lemburg <[EMAIL PROTECTED]> added the comment: I think it's better to disable that function in the same way as done for _syscmd_uname: if sys.platform in ('dos','win32','win16','os2'): # XXX Others too ? return default BTW: I assume you are running this on win32,