Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python doctest exceptions

So, I'm trying to match an exception with a doctest.

>>> api = Api("foo", "bar") # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
...
AuthError

The issue is that this works with py2.7 but not with python 3. The format of exception trace has been changed so now it include the full module name. I.e. in python 3 I have package.module.AuthError instead.

Is there a way to match both? Seems like IGNORE_EXCEPTION_DETAIL has no effect here.

like image 899
Nikolay Derkach Avatar asked Dec 03 '13 19:12

Nikolay Derkach


People also ask

Can we handle unpredictable output using doctest?

When the tests include values that are likely to change in unpredictable ways, and where the actual value is not important to the test results, you can use the ELLIPSIS option to tell doctest to ignore portions of the verification value.

What is doctest in Python example?

The doctest module searches for pieces of text that look like interactive Python sessions, and then executes those sessions to verify that they work exactly as shown.


1 Answers

This was unintentionally broken by a patch for a related issue: IGNORE_EXCEPTION_DETAIL should ignore the module name

and the unintended behavior you're seeing is an open issue here: doctest.IGNORE_EXCEPTION_DETAIL doesn't match when no detail exists

So it's a bug, according to me. Which is pretty good assurance it will get fixed, since I wrote doctest to begin with ;-) In the meantime, you may want to try the patch attached to the 2nd bug report.

Followup: Last night I checked in a fix for this, which will appear in the next releases of Pythons 2.7, 3.3, and 3.4. Thanks for the nudge :-)

like image 61
Tim Peters Avatar answered Nov 05 '22 19:11

Tim Peters