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 posita
Recipients dstufft, eric.araujo, posita
Date 2016-12-15.18:08:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481825288.28.0.614509725219.issue28981@psf.upfronthosting.co.za>
In-reply-to
Content
From (e.g) https://github.com/python/cpython/blob/2.7/Lib/distutils/command/check.py#L145:

{{{
        try:
            parser.parse(data, document)
        except AttributeError as e:  # <- this could happen anywhere inside parser.parse
            reporter.messages.append(
(-1, 'Could not finish the parsing: %s.' % e, '', {}))
}}}

Without a stack trace, diagnosing problems like #23063 becomes unnecessarily difficult. See also:

* https://sourceforge.net/p/docutils/bugs/270/
* https://sourceforge.net/p/docutils/bugs/302/

I'd offer a patch, but I'm not sure what is meant to be signaled by the `AttributeError`. (Could `parser.parse` not exist? Is it something else?)
History
Date User Action Args
2016-12-15 18:08:08positasetrecipients: + posita, eric.araujo, dstufft
2016-12-15 18:08:08positasetmessageid: <1481825288.28.0.614509725219.issue28981@psf.upfronthosting.co.za>
2016-12-15 18:08:08positalinkissue28981 messages
2016-12-15 18:08:07positacreate