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 harobed
Recipients harobed
Date 2010-06-17.12:42:10
SpamBayes Score 0.05399321
Marked as misclassified No
Message-id <1276778533.38.0.325280903618.issue9017@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

in some doctest, I need to stop doctest from a position because the following test is a draft, not implemented.

I dream something like this :

   >>> test_a()
   True

   >>> test_b()
   False

   #doctest: +DISABLE

   >>> test_c()
   True

   >>> test_d()
   False

   #doctest: +ENABLE

   >>> test_e()
   True

   >>> test_f()
   False

Here, test_c and test_d aren't executed.

What do you think about this idea ? If it is a good idea, I can implement it.

Thanks for your comments,
Stephane
History
Date User Action Args
2010-06-17 12:42:13harobedsetrecipients: + harobed
2010-06-17 12:42:13harobedsetmessageid: <1276778533.38.0.325280903618.issue9017@psf.upfronthosting.co.za>
2010-06-17 12:42:11harobedlinkissue9017 messages
2010-06-17 12:42:10harobedcreate