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.
Created on 2013年11月18日 01:16 by vstinner, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg203241 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2013年11月18日 01:16 | |
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' ? ^^^ |
|||
| msg203245 - (view) | Author: David Edelsohn (David.Edelsohn) * | Date: 2013年11月18日 04:27 | |
$ 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. |
|||
| msg203439 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2013年11月19日 22:47 | |
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 |
|||
| msg203605 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2013年11月21日 10:30 | |
test_subprocess now pass on the "PPC64 AIX 3.x" buildbot, I close the issue. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:53 | admin | set | github: 63836 |
| 2013年11月21日 10:30:48 | vstinner | set | status: open -> closed resolution: fixed messages: + msg203605 |
| 2013年11月19日 22:47:05 | python-dev | set | nosy:
+ python-dev messages: + msg203439 |
| 2013年11月18日 04:27:59 | David.Edelsohn | set | messages: + msg203245 |
| 2013年11月18日 01:16:33 | vstinner | create | |