Hacked By AnonymousFox
U
e5d_� � ! @ st d Z dZdddddddd d
ddd
ddddddddddddddddddd d!d"g!Zd#d$lZd#d$lZd#d$lZd#d$lZd#d$lZd#d$lZd#d$l Z d#d$l
Z
d#d$lZd#d$lZd#d%l
mZ d#d&lmZ ed'd(�Zi Zd)d� Zed�Zed�Zed�Zed�Zed�Zed�ZeeB eB eB eB eB Zed
�Zed�Zed�Zed
�Zed�ZeeB eB eB eB Z d*Z!d+Z"d,d-� Z#dsd/d0�Z$d1d2� Z%d3d4� Z&dtd6d7�Z'd8d9� Z(G d:d;� d;e�Z)d<d=� Z*d>d?� Z+d@dA� Z,G dBdC� dCej-�Z.dDdE� Z/G dFd� d�Z0G dGd� d�Z1G dHd� d�Z2G dId� d�Z3G dJd� d�Z4G dKd� d�Z5G dLd� de6�Z7G dMd� de6�Z8G dNd� de4�Z9d$a:dudQd�Z;dOd$d$d$d$dOd#d$dPe2� d$fdRd�Z<dvdTd�Z=d#a>dUd� Z?G dVdW� dWej@�ZAG dXdY� dYeA�ZBG dZd[� d[ejC�ZDdwd\d�ZEG d]d^� d^eA�ZFdOd$d$e2� d$fd_d`�ZGdad� ZHdbd� ZIdcd � ZJdxddd!�ZKdydedf�ZLdzdgd"�ZMG dhdi� di�ZNeNdjdkdldmdndo�ZOdpdq� ZPeQdrk�rpe
�ReP� � d$S ){a� Module doctest -- a framework for running examples in docstrings.
In simplest use, end each module M to be tested with:
def _test():
import doctest
doctest.testmod()
if __name__ == "__main__":
_test()
Then running the module as a script will cause the examples in the
docstrings to get executed and verified:
python M.py
This won't display anything unless an example fails, in which case the
failing example(s) and the cause(s) of the failure(s) are printed to stdout
(why not stderr? because stderr is a lame hack <0.2 wink>), and the final
line of output is "Test failed.".
Run it with the -v switch instead:
python M.py -v
and a detailed report of all examples tried is printed to stdout, along
with assorted summaries at the end.
You can force verbose mode by passing "verbose=True" to testmod, or prohibit
it by passing "verbose=False". In either of those cases, sys.argv is not
examined by testmod.
There are a variety of other ways to run doctests, including integration
with the unittest framework, and support for running non-Python text
files containing doctests. There are also many ways to override parts
of doctest's default behaviors. See the Library Reference Manual for
details.
zreStructuredText en�register_optionflag�DONT_ACCEPT_TRUE_FOR_1�DONT_ACCEPT_BLANKLINE�NORMALIZE_WHITESPACE�ELLIPSIS�SKIP�IGNORE_EXCEPTION_DETAIL�COMPARISON_FLAGS�REPORT_UDIFF�REPORT_CDIFF�REPORT_NDIFF�REPORT_ONLY_FIRST_FAILURE�REPORTING_FLAGS� FAIL_FAST�Example�DocTest�
DocTestParser�
DocTestFinder�
DocTestRunner�
OutputChecker�DocTestFailure�UnexpectedException�DebugRunner�testmod�testfile�run_docstring_examples�DocTestSuite�DocFileSuite�set_unittest_reportflags�script_from_examples�
testsource� debug_src�debug� N)�StringIO)�
namedtuple�TestResultszfailed attemptedc C s t �| dtt �>