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 eryksun
Recipients cgohlke, eryksun, ezio.melotti, paul.moore, serhiy.storchaka, steve.dower, tim.golden, vstinner, zach.ware
Date 2016-09-13.10:43:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473763396.08.0.434464412406.issue28114@psf.upfronthosting.co.za>
In-reply-to
Content
Here's a snippet to reproduce this bug:

    import os, sys
    environb = {os.fsencode(k):os.fsencode(v) for k,v in os.environ.items()}
    os.spawnve(os.P_WAIT, sys.executable, ('python', '--version'), environb)

(Now that Windows Python provisionally supports bytes via utf-8:surrogatepass, maybe it should also have an os.environb mapping.)
History
Date User Action Args
2016-09-13 10:43:16eryksunsetrecipients: + eryksun, paul.moore, vstinner, tim.golden, ezio.melotti, cgohlke, zach.ware, serhiy.storchaka, steve.dower
2016-09-13 10:43:16eryksunsetmessageid: <1473763396.08.0.434464412406.issue28114@psf.upfronthosting.co.za>
2016-09-13 10:43:16eryksunlinkissue28114 messages
2016-09-13 10:43:15eryksuncreate