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 pablogsal
Recipients pablogsal
Date 2017-10-12.20:59:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507841968.12.0.213398074469.issue31776@psf.upfronthosting.co.za>
In-reply-to
Content
Based on bpo-29762 (https://github.com/python/cpython/commit/5affd23e6f42125998724787025080a24839266e), there is an inconsistency on one exception chain in /Lib/xml/etree/ElementPath.py:

             try:
                 selector.append(ops[token[0]](next, token))
             except StopIteration:
                raise SyntaxError("invalid path")

should be

              raise SyntaxError("invalid path") from None
History
Date User Action Args
2017-10-12 20:59:28pablogsalsetrecipients: + pablogsal
2017-10-12 20:59:28pablogsalsetmessageid: <1507841968.12.0.213398074469.issue31776@psf.upfronthosting.co.za>
2017-10-12 20:59:28pablogsallinkissue31776 messages
2017-10-12 20:59:27pablogsalcreate