HomeSort by relevance Sort by last modified time
    Searched full:getattr (Results 401 - 425 of 966) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shlex.py 182 if not getattr(shlex, "split", None):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
result.py 17 if getattr(self, 'failfast', False):
  /prebuilts/python/linux-x86/2.7.5/bin/
smtpd.py 159 method = getattr(self, 'smtp_' + command, None)
378 errcode = getattr(e, 'smtp_code', -1)
379 errmsg = getattr(e, 'smtp_error', 'ignore')
534 class_ = getattr(mod, classname)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Bastion.py 120 attribute = getattr(object, name)
_weakrefset.py 77 getattr(self, '__dict__', None))
codeop.py 61 _features = [getattr(__future__, fname)
copy_reg.py 76 if getattr(self, "__slots__", None):
hashlib.py 96 f = getattr(_hashlib, 'openssl_' + name)
pydoc.py 139 methods[key] = getattr(cl, key)
312 try: module = getattr(module, part)
392 return getattr(self, methodname)(x, level)
502 if hasattr(module, name) and getattr(module, name) is object:
641 if getattr(module, key) is base:
744 value = getattr(object, name)
770 base = self.docother(getattr(object, name), name, mod)
773 doc = getattr(value, "__doc__", None)
792 value = getattr(object, name)
    [all...]
repr.py 32 return getattr(self, 'repr_' + typename)(x, level)
rexec.py 46 setattr(self, m, getattr(f, m))
54 return getattr(self.mod, self.name).%s(*args)
273 setattr(dst, name, getattr(src, name))
285 value = getattr(src, name)
rlcompleter.py 149 val = getattr(thisobject, word)
sgmllib.py 333 method = getattr(self, 'start_' + tag)
336 method = getattr(self, 'do_' + tag)
358 method = getattr(self, 'end_' + tag)
370 method = getattr(self, 'end_' + tag)
smtpd.py 159 method = getattr(self, 'smtp_' + command, None)
378 errcode = getattr(e, 'smtp_code', -1)
379 errmsg = getattr(e, 'smtp_error', 'ignore')
534 class_ = getattr(mod, classname)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
check.py 94 if not (hasattr(metadata, attr) and getattr(metadata, attr)):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFileDialog.py 82 result = tuple([getattr(r, "string", r) for r in result])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_capi.py 129 test = getattr(_testcapi, name)
test_cmath.py 50 test_functions = [getattr(cmath, fname) for fname in [
269 float_fn = getattr(math, fn)
270 complex_fn = getattr(cmath, fn)
305 function = getattr(cmath, fn)
test_gl.py 101 getattr(gl, attr)
test_imaplib.py 94 getattr(self, 'cmd_%s' % (cmd,))(tag, args)
test_importlib.py 49 originals[attr] = getattr(sys, attr)
test_posix.py 51 posix_func = getattr(posix, name, None)
293 getattr(posix, 'stat', None))
304 getattr(posix, 'fstat', None))
314 getattr(posix, 'lstat', None))
test_property.py 99 self.assertRaises(PropertyGet, getattr, sub, "spam")
test_pyexpat.py 138 setattr(parser, name, getattr(out, name))
168 setattr(parser, name, getattr(out, name))
197 setattr(parser, name, getattr(out, name))
315 setattr(self.parser, name, getattr(self, name))
test_shlex.py 182 if not getattr(shlex, "split", None):

Completed in 402 milliseconds

<<11121314151617181920>>