[issue16522] Add 'FAIL_FAST' flag to doctest

2012-11-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset e456da396ad9 by R David Murray in branch 'default': #16522: s/always 1/at most 1/. http://hg.python.org/cpython/rev/e456da396ad9 -- ___ Python tracker

[issue16522] Add 'FAIL_FAST' flag to doctest

2012-11-21 Thread R. David Murray
R. David Murray added the comment: Looks great, I didn't think any changes were needed. Thanks a bunch, Daniel. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue16522] Add 'FAIL_FAST' flag to doctest

2012-11-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 966432a0734c by R David Murray in branch 'default': #16522: Add FAIL_FAST flag to doctest. http://hg.python.org/cpython/rev/966432a0734c -- nosy: +python-dev ___ Python tracker

[issue16522] Add 'FAIL_FAST' flag to doctest

2012-11-21 Thread Daniel Urban
Daniel Urban added the comment: I'm sorry, I forgot the versionadded directive. The fixed patch is attached. -- Added file: http://bugs.python.org/file28067/doctest_fail_fast_3.patch ___ Python tracker

[issue16522] Add 'FAIL_FAST' flag to doctest

2012-11-21 Thread Daniel Urban
Changes by Daniel Urban : Removed file: http://bugs.python.org/file28066/doctest_fail_fast_2.patch ___ Python tracker ___ ___ Python-bugs-list

[issue16522] Add 'FAIL_FAST' flag to doctest

2012-11-21 Thread Daniel Urban
Daniel Urban added the comment: I've added some tests and documentation. English is not my first language, so the docs almost certainly need some correction. -- nosy: +daniel.urban Added file: http://bugs.python.org/file28066/doctest_fail_fast_2.patch __

[issue16522] Add 'FAIL_FAST' flag to doctest

2012-11-21 Thread R. David Murray
New submission from R. David Murray: When debugging using tests or doing test driven development, I find it very useful to have the test run exit immediately on the first failure. Doctest currently has a feature to suppress all output after the first failure, but not to exit on the first fail