Home | History | Annotate | Download | only in Lib

Lines Matching refs:extraglobs

780     def find(self, obj, name=None, module=None, globs=None, extraglobs=None):

807 and `extraglobs` (bindings in `extraglobs` override bindings
811 extraglobs` is not specified, then it defaults
850 # Initialize globals, and merge in extraglobs.
858 if extraglobs is not None:
859 globs.update(extraglobs)
1760 report=True, optionflags=0, extraglobs=None,
1763 optionflags=0, extraglobs=None, raise_on_error=False,
1787 Optional keyword arg "extraglobs" gives a dictionary that should be
1850 for test in finder.find(m, name, globs=globs, extraglobs=extraglobs):
1865 extraglobs=None, raise_on_error=False, parser=DocTestParser(),
1900 Optional keyword arg "extraglobs" gives a dictionary that should be
1961 if extraglobs is not None:
1962 globs.update(extraglobs)
2277 def DocTestSuite(module=None, globs=None, extraglobs=None, test_finder=None,
2318 tests = test_finder.find(module, globs=globs, extraglobs=extraglobs)