Home
last modified time | relevance | path

Searched refs:globs (Results 1 – 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddoctest.py178 def _extract_future_flags(globs): argument
185 feature = globs.get(fname, None)
478 def __init__(self, examples, globs, name, filename, lineno, docstring): argument
487 self.globs = globs.copy()
601 def get_doctest(self, string, globs, name, filename, lineno): argument
610 return DocTest(self.get_examples(string, name), globs,
780 def find(self, obj, name=None, module=None, globs=None, extraglobs=None): argument
851 if globs is None:
853 globs = {}
855 globs = module.__dict__.copy()
[all …]
DcProfile.py187 globs = {
192 runctx(code, globs, None, options.outfile, options.sort)
Dtrace.py809 globs = {
815 t.runctx(code, globs, globs)
Dprofile.py607 globs = {
612 runctx(code, globs, None, options.outfile, options.sort)
Dpdb.py480 globs = self.curframe.f_globals if hasattr(self, 'curframe') else None
481 line = linecache.getline(filename, lineno, globs)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_parser.py555 globs = {}
556 exec code in globs
557 self.assertEqual(globs['y'], 5)
Dtest_zipimport.py342 globs=locals()
355 globs=locals()
Dtest_io.py2766 globs = globals()
2767 c_io_ns.update((x.__name__, globs["C" + x.__name__]) for x in mocks)
2768 py_io_ns.update((x.__name__, globs["Py" + x.__name__]) for x in mocks)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dbuild_py.py124 globs = (self.package_data.get('', [])
127 for pattern in globs: