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

Lines Matching refs:extraglobs

815     def find(self, obj, name=None, module=None, globs=None, extraglobs=None):
842 and `extraglobs` (bindings in `extraglobs` override bindings
846 otherwise. If `extraglobs` is not specified, then it defaults
885 # Initialize globals, and merge in extraglobs.
893 if extraglobs is not None:
894 globs.update(extraglobs)
1795 report=True, optionflags=0, extraglobs=None,
1798 optionflags=0, extraglobs=None, raise_on_error=False,
1822 Optional keyword arg "extraglobs" gives a dictionary that should be
1885 for test in finder.find(m, name, globs=globs, extraglobs=extraglobs):
1900 extraglobs=None, raise_on_error=False, parser=DocTestParser(),
1935 Optional keyword arg "extraglobs" gives a dictionary that should be
1996 if extraglobs is not None:
1997 globs.update(extraglobs)
2333 def DocTestSuite(module=None, globs=None, extraglobs=None, test_finder=None,
2374 tests = test_finder.find(module, globs=globs, extraglobs=extraglobs)