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, pitrou, vstinner
Date 2010-05-16.02:29:34
SpamBayes Score 0.085291184
Marked as misclassified No
Message-id <1273976976.3.0.651022652911.issue8640@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.1 accepts duplicate variables (str name, bytes name). It creates the two variables is a random order:

>>> subprocess.call(['env'], env={'xx': 'str', b'xx': 'bytes'})
xx=str
xx=bytes
0
>>> subprocess.call(['env'], env={'xxx': 'str', b'xxx': 'bytes'})
xxx=bytes
xxx=str
0
History
Date User Action Args
2010-05-16 02:29:36vstinnersetrecipients: + vstinner, pitrou, Arfrever
2010-05-16 02:29:36vstinnersetmessageid: <1273976976.3.0.651022652911.issue8640@psf.upfronthosting.co.za>
2010-05-16 02:29:34vstinnerlinkissue8640 messages
2010-05-16 02:29:34vstinnercreate