[issue19138] doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

2013-12-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 017d7c27a4f6 by Tim Peters in branch '3.3': Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. http://hg.python.org/cpython/rev/017d7c27a4f6 -- ___ Python tracker

[issue19138] doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

2013-12-03 Thread Tim Peters
Changes by Tim Peters : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___ Pytho

[issue19138] doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

2013-12-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5e14a3435f52 by Tim Peters in branch '2.7': Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. http://hg.python.org/cpython/rev/5e14a3435f52 -- ___ Python tracker

[issue19138] doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

2013-12-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset c80083ad142d by Tim Peters in branch 'default': Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. http://hg.python.org/cpython/rev/c80083ad142d -- nosy: +python-dev ___ Python t

[issue19138] doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

2013-12-03 Thread Tim Peters
Tim Peters added the comment: On second thought, I don't want to use a regexp for this. The mandatory colon _was_ a kind of absolute wall, and the various instances of "[^:]" exploited that to avoid unintended matches. But "possibly dotted name followed possibly by a colon" is straightforward

[issue19138] doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

2013-12-03 Thread Tim Peters
Tim Peters added the comment: I agree this is a bug, and at a first scan your fix looks good. I'll make it a priority to pay more attention to it now ;-) -- assignee: -> tim.peters ___ Python tracker ___

[issue19138] doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +tim.peters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue19138] doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

2013-10-01 Thread John Murphy
New submission from John Murphy: The doctest.IGNORE_EXCEPTION_DETAIL optionflag does not seem to have the desired behavior when the exception does not provide a message, due to the regular expressions in doctest.DocTestRunner.__run expecting a colon in the second group:: elif sel