Home | History | Annotate | Download | only in python2.7

Lines Matching refs:__test__

956         # Look for tests in a module's __test__ dictionary.
958 for valname, val in getattr(obj, '__test__', {}).items():
960 raise ValueError("DocTestFinder.find: __test__ keys "
966 raise ValueError("DocTestFinder.find: __test__ values "
970 valname = '%s.__test__.%s' % (name, valname)
1805 Also test examples reachable from dict m.__test__ if it exists and is
1806 not None. m.__test__ maps names to functions, classes and strings;
2102 m.__test__ = d
2715 __test__ = {"_TestClass": _TestClass,