Message321973
| Author | rhettinger |
|---|---|
| Recipients | eli.bendersky, rhettinger, scoder |
| Date | 2018-07-20.00:42:05 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1532047327.92.0.56676864532.issue34160@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Starting with Python3.6, the order of keyword arguments has been guaranteed. Something in ElementTree is not respecting that order.
$ python3.7
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 26 2018, 23:26:24)
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from xml.etree.ElementTree import Element, dump
>>> dump(Element('cirriculum', status='public', company='example'))
<cirriculum company="example" status="public" />
>>> # ^-----------------^-------------------- These are swapped |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-07-20 00:42:08 | rhettinger | set | recipients: + rhettinger, scoder, eli.bendersky |
| 2018-07-20 00:42:07 | rhettinger | set | messageid: <1532047327.92.0.56676864532.issue34160@psf.upfronthosting.co.za> |
| 2018-07-20 00:42:07 | rhettinger | link | issue34160 messages |
| 2018-07-20 00:42:06 | rhettinger | create | |