This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author portella
Recipients portella
Date 2008-07-18.19:49:53
SpamBayes Score 0.19790028
Marked as misclassified No
Message-id <1216410595.08.0.936182141358.issue3410@psf.upfronthosting.co.za>
In-reply-to
Content
Using Vista in Portuguese platform.version is returning "32bits" 
instead of "6.0.6001". This is because in file platform.py line 379 
thee regular expression try to search for the word "Version" in 
english, while in Portuguese the command ver will return "Versão".

To solve this issue simple change:

'Version ([\d.]+))')

for

 '\S+ ([\d.]+))')
History
Date User Action Args
2008-07-18 19:49:55portellasetspambayes_score: 0.1979 -> 0.19790028
recipients: + portella
2008-07-18 19:49:55portellasetspambayes_score: 0.1979 -> 0.1979
messageid: <1216410595.08.0.936182141358.issue3410@psf.upfronthosting.co.za>
2008-07-18 19:49:54portellalinkissue3410 messages
2008-07-18 19:49:53portellacreate