vote up 0 vote down star

Python's doctest module has a section for advanced API. Has anyone found a particular use for this API?

A quick look at the API structure (from the docs):

                            list of:
+------+                   +---------+
|module| --DocTestFinder-> | DocTest | --DocTestRunner-> results
+------+    |        ^     +---------+     |       ^    (printed)
            |        |     | Example |     |       |
            v        |     |   ...   |     v       |
           DocTestParser   | Example |   OutputChecker
                           +---------+
flag

1 Answer

vote up 1 vote down

You use that API when you are extending doctests, like the nose unit testing suite does.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.