HomeSort by relevance Sort by last modified time
    Searched refs:fromlist (Results 1 - 23 of 23) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imputil.py 86 def _import_hook(self, fqname, globals=None, locals=None, fromlist=None):
96 module = parent.__importer__._do_import(parent, parts, fromlist)
113 if not fromlist:
121 # sub-modules that occur in the fromlist (but we can't raise an
129 # the "bottom" which is the defined return when a fromlist
135 return importer._finish_import(top_module, parts[1:], fromlist)
139 if fromlist:
228 def _finish_import(self, top, parts, fromlist):
234 if not fromlist:
235 # no fromlist: return the top of the import tre
    [all...]
modulefinder.py 123 def import_hook(self, name, caller=None, fromlist=None, level=-1):
124 self.msg(3, "import_hook", name, caller, fromlist, level)
128 if not fromlist:
131 self.ensure_fromlist(m, fromlist)
211 def ensure_fromlist(self, m, fromlist, recursive=0):
212 self.msg(4, "ensure_fromlist", m, fromlist, recursive)
213 for sub in fromlist:
317 def _safe_import_hook(self, name, caller, fromlist, level=-1):
328 if fromlist:
329 for sub in fromlist
    [all...]
difflib.py     [all...]
ihooks.py 362 def import_module(self, name, globals={}, locals={}, fromlist=[]):
404 def import_module(self, name, globals=None, locals=None, fromlist=None,
409 if not fromlist:
412 self.ensure_fromlist(m, fromlist)
493 def ensure_fromlist(self, m, fromlist, recursive=0):
494 for sub in fromlist:
rexec.py 338 def r_import(self, mname, globals={}, locals={}, fromlist=[]):
347 return self.importer.import_module(mname, globals, locals, fromlist)
mhlib.py 323 s.fromlist(seq)
839 def fromlist(self, list): member in class:IntSet
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imputil.py 86 def _import_hook(self, fqname, globals=None, locals=None, fromlist=None):
96 module = parent.__importer__._do_import(parent, parts, fromlist)
113 if not fromlist:
121 # sub-modules that occur in the fromlist (but we can't raise an
129 # the "bottom" which is the defined return when a fromlist
135 return importer._finish_import(top_module, parts[1:], fromlist)
139 if fromlist:
228 def _finish_import(self, top, parts, fromlist):
234 if not fromlist:
235 # no fromlist: return the top of the import tre
    [all...]
modulefinder.py 123 def import_hook(self, name, caller=None, fromlist=None, level=-1):
124 self.msg(3, "import_hook", name, caller, fromlist, level)
128 if not fromlist:
131 self.ensure_fromlist(m, fromlist)
211 def ensure_fromlist(self, m, fromlist, recursive=0):
212 self.msg(4, "ensure_fromlist", m, fromlist, recursive)
213 for sub in fromlist:
317 def _safe_import_hook(self, name, caller, fromlist, level=-1):
328 if fromlist:
329 for sub in fromlist
    [all...]
difflib.py     [all...]
ihooks.py 362 def import_module(self, name, globals={}, locals={}, fromlist=[]):
404 def import_module(self, name, globals=None, locals=None, fromlist=None,
409 if not fromlist:
412 self.ensure_fromlist(m, fromlist)
493 def ensure_fromlist(self, m, fromlist, recursive=0):
494 for sub in fromlist:
rexec.py 338 def r_import(self, mname, globals={}, locals={}, fromlist=[]):
347 return self.importer.import_module(mname, globals, locals, fromlist)
mhlib.py 323 s.fromlist(seq)
839 def fromlist(self, list): member in class:IntSet
    [all...]
  /external/chromium_org/tools/grit/grit/extern/
FP.py 57 hash_module = __import__(module_name, fromlist=[module_name])
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 38 module = __import__(module_name, fromlist=[True])
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
import.h 19 PyObject *globals, PyObject *locals, PyObject *fromlist, int level);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
import.h 19 PyObject *globals, PyObject *locals, PyObject *fromlist, int level);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
__init__.py 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
__init__.py 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
  /external/chromium_org/tools/telemetry/build/
update_docs.py 66 module = __import__(modname, fromlist=[""])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_array.py 226 self.assertRaises(TypeError, b.fromlist)
227 self.assertRaises(TypeError, b.fromlist, 42)
228 self.assertRaises(TypeError, b.fromlist, [None])
229 b.fromlist(a.tolist())
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_array.py 226 self.assertRaises(TypeError, b.fromlist)
227 self.assertRaises(TypeError, b.fromlist, 42)
228 self.assertRaises(TypeError, b.fromlist, [None])
229 b.fromlist(a.tolist())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 922 fromlist = tuple(name for (name, alias) in node.names)
925 self.emit('LOAD_CONST', fromlist)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 922 fromlist = tuple(name for (name, alias) in node.names)
925 self.emit('LOAD_CONST', fromlist)
    [all...]

Completed in 798 milliseconds