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 chris.jerdonek
Recipients chris.jerdonek
Date 2012-08-14.11:40:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344944428.64.0.0280287905357.issue15648@psf.upfronthosting.co.za>
In-reply-to
Content
The --help documentation for the python executable says--

PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.

However, PYTHONIOENCODING doesn't seem to be respected for the python executable's "refs" output to stderr.  For example, this--

args = [sys.executable, '-c', "print('[100 refs]')"]

env = {'PYTHONIOENCODING': 'utf-8'}
popen = Popen(args, universal_newlines=False, stdin=PIPE, stdout=PIPE, stderr=PIPE, env=env)
print(repr(popen.communicate()))

env = {'PYTHONIOENCODING': 'utf-16'}
popen = Popen(args, universal_newlines=False, stdin=PIPE, stdout=PIPE, stderr=PIPE, env=env)
print(repr(popen.communicate()))

yields--

(b'[10 refs]\n', b'[41761 refs]\n')
(b'[\x001\x000\x00 \x00r\x00e\x00f\x00s\x00]\x00\n\x00', b'[42367 refs]\n')
History
Date User Action Args
2012-08-14 11:40:28chris.jerdoneksetrecipients: + chris.jerdonek
2012-08-14 11:40:28chris.jerdoneksetmessageid: <1344944428.64.0.0280287905357.issue15648@psf.upfronthosting.co.za>
2012-08-14 11:40:28chris.jerdoneklinkissue15648 messages
2012-08-14 11:40:27chris.jerdonekcreate