Message105845
| 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:36 | vstinner | set | recipients: + vstinner, pitrou, Arfrever |
| 2010-05-16 02:29:36 | vstinner | set | messageid: <1273976976.3.0.651022652911.issue8640@psf.upfronthosting.co.za> |
| 2010-05-16 02:29:34 | vstinner | link | issue8640 messages |
| 2010-05-16 02:29:34 | vstinner | create | |