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 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:08rhettingersetrecipients: + rhettinger, scoder, eli.bendersky
2018-07-20 00:42:07rhettingersetmessageid: <1532047327.92.0.56676864532.issue34160@psf.upfronthosting.co.za>
2018-07-20 00:42:07rhettingerlinkissue34160 messages
2018-07-20 00:42:06rhettingercreate