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 vstinner
Recipients Arfrever, amaury.forgeotdarc, ezio.melotti, lemburg, loewis, ncoghlan, rhettinger, vstinner
Date 2014-04-28.20:49:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398718164.45.0.823053353847.issue8776@psf.upfronthosting.co.za>
In-reply-to
Content
Today I regret os.environb (I added it). If I remember correctly, os.environb was added before the PEP 383 (surrogateescape). This PEP makes os.environb almost useless. In Python 3, Unicode is the natural choice, and thanks to the PEP 383, it's still possible to use any "raw bytes".

argvb can be computed in one line: list(map(os.fsencode, sys.argv)).

I now suggest to close this issue as wontfix.
History
Date User Action Args
2014-04-28 20:49:24vstinnersetrecipients: + vstinner, lemburg, loewis, rhettinger, amaury.forgeotdarc, ncoghlan, ezio.melotti, Arfrever
2014-04-28 20:49:24vstinnersetmessageid: <1398718164.45.0.823053353847.issue8776@psf.upfronthosting.co.za>
2014-04-28 20:49:24vstinnerlinkissue8776 messages
2014-04-28 20:49:24vstinnercreate