[issue19637] test_subprocess.test_undecodable_env() failure on AIX

2013-11-21 Thread STINNER Victor

STINNER Victor added the comment:

test_subprocess now pass on the "PPC64 AIX 3.x" buildbot, I close the issue.

--
resolution:  -> fixed
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19637] test_subprocess.test_undecodable_env() failure on AIX

2013-11-19 Thread Roundup Robot

Roundup Robot added the comment:

New changeset e651036191ad by Victor Stinner in branch 'default':
Issue #19637: fix test_undecodable_env() of test_subprocess on AIX
http://hg.python.org/cpython/rev/e651036191ad

--
nosy: +python-dev

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19637] test_subprocess.test_undecodable_env() failure on AIX

2013-11-17 Thread David Edelsohn

David Edelsohn added the comment:

$ LC_ALL=C python -c 'import locale; print(locale.getpreferredencoding(False))'
ISO8859-1

It's possible that some additional locales were not installed by default with 
the system, e.g., UTF-8.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19637] test_subprocess.test_undecodable_env() failure on AIX

2013-11-17 Thread STINNER Victor

New submission from STINNER Victor:

To analyze the following issue, I would like to know which locale encoding is 
used on AIX with the C locale. Example:

$ LC_ALL=C python -c 'import locale; print(locale.getpreferredencoding(False))'
ANSI_X3.4-1968

http://buildbot.python.org/all/builders/PPC64%20AIX%203.x

==
FAIL: test_undecodable_env (test.test_subprocess.POSIXProcessTestCase)
--
Traceback (most recent call last):
  File 
"/home/shager/cpython-buildarea/3.x.edelsohn-aix-ppc64/build/Lib/test/test_subprocess.py",
 line 1696, in test_undecodable_env
self.assertEqual(stdout.decode('ascii'), ascii(value))
AssertionError: "'abc\\xff'" != "'abc\\udcff'"
- 'abc\xff'
?  ^
+ 'abc\udcff'
?  ^^^

--
components: Tests
keywords: buildbot
messages: 203241
nosy: David.Edelsohn, haypo
priority: normal
severity: normal
status: open
title: test_subprocess.test_undecodable_env() failure on AIX
versions: Python 3.4

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com