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 dmi.baranov
Recipients Dominik.Richter, dmi.baranov, ezio.melotti, neologix, r.david.murray, vstinner
Date 2013-06-03.05:47:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1370238457.98.0.723571966389.issue18109@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks Charles - I'm reproduced Dominik's issue at default branch:

$ python -c 'import os, sys;print(sys.version);print(os.uname())' 
3.4.0a0 (default:adfec512fb32, Jun  3 2013, 08:09:43) 
[GCC 4.6.3]
Traceback (most recent call last):
  File "<string>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1: ordinal not in range(128)

Lastest branches affected only, so - this a bug.

$ python -c 'import os, sys;print(sys.version);print(os.uname())'
2.7.5+ (2.7:e9d0fb934b46, Jun  3 2013, 08:05:55) 
[GCC 4.6.3]
('Linux', 'h\xc3\xa2t', '3.2.0-32-generic', '#51-Ubuntu SMP Wed Sep 26 21:32:50 UTC 2012', 'i686')

$ python -c 'import os, sys;print(sys.version);print(os.uname())'
3.2.5 (3.2:b9b521efeba3, Jun  3 2013, 08:24:06) 
[GCC 4.6.3]
('Linux', 'hât', '3.2.0-32-generic', '#51-Ubuntu SMP Wed Sep 26 21:32:50 UTC 2012', 'i686')

Env:
$ hostname
hât
$ locale
LANG=en_US.UTF-8
...

BTW, that issue do not allow to compile from sources on hosts with similar names, I've created separate issue #18124 (possible a duplicate, but another behavior)
History
Date User Action Args
2013-06-03 05:47:38dmi.baranovsetrecipients: + dmi.baranov, vstinner, ezio.melotti, r.david.murray, neologix, Dominik.Richter
2013-06-03 05:47:37dmi.baranovsetmessageid: <1370238457.98.0.723571966389.issue18109@psf.upfronthosting.co.za>
2013-06-03 05:47:37dmi.baranovlinkissue18109 messages
2013-06-03 05:47:37dmi.baranovcreate