/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
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):
|
test_support.py | 154 attribute = getattr(obj, name) 601 return getattr(self._warnings[-1], attr) 824 if getattr(value, attr) != attr_value: 855 captured_errnos = [getattr(errno, name, num) 857 gai_errnos = [getattr(socket, name, num) 861 n = getattr(err, 'errno', None) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
result.py | 17 if getattr(self, 'failfast', False):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_support.py | 154 attribute = getattr(obj, name) 601 return getattr(self._warnings[-1], attr) 824 if getattr(value, attr) != attr_value: 855 captured_errnos = [getattr(errno, name, num) 857 gai_errnos = [getattr(socket, name, num) 861 n = getattr(err, 'errno', None) [all...] |
test_file2k.py | 38 self.assertRaises(ReferenceError, getattr, p, 'tell') 128 method = getattr(self.f, methodname) 133 method = getattr(self.f, methodname) 164 self.assertRaises(IOError, getattr(self.f, attr)) 343 meth = getattr(f, methodname)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
config.py | 92 found = getattr(found, n) 95 found = getattr(found, n) 401 found = getattr(found, frag) 404 found = getattr(found, frag) 474 converter = getattr(self, converter) [all...] |