Searched refs:methname (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/test/ |
D | test_shlex.py | 371 for methname in dir(ShlexTest): 372 if methname.startswith("test") and methname != "testCompat": 373 delattr(ShlexTest, methname)
|
D | test_trace.py | 215 for methname in ['inst_method_linear',]: 218 method = getattr(traced_obj, methname)
|
D | test_set.py | 1699 for methname in ('update', 'intersection_update', 1704 getattr(s, methname)(list(g(data))) 1705 getattr(t, methname)(g(data)) 1708 self.assertRaises(TypeError, getattr(set('january'), methname), X(data)) 1709 self.assertRaises(TypeError, getattr(set('january'), methname), N(data)) 1710 self.assertRaises(ZeroDivisionError, getattr(set('january'), methname), E(data))
|
D | test_bytes.py | 1855 for methname in ('zfill', 'rjust', 'ljust', 'center'): 1856 method = getattr(val, methname) 1860 methname+' returned self on a mutable object')
|
/third_party/nghttp2/doc/_exts/rubydomain/ |
D | rubydomain.py | 288 clsname, methname = ruby_rsplit(name) 295 return _('%s() (%s::%s method)') % (methname, modname, 298 return _('%s() (%s method)') % (methname, clsname) 352 clsname, methname = ruby_rsplit(name) 356 return _('%s() (%s.%s class method)') % (methname, modname, 359 return _('%s() (%s class method)') % (methname, clsname)
|
/third_party/python/Parser/ |
D | asdl.py | 133 methname = "visit" + klass.__name__ 134 meth = getattr(self, methname, None)
|
/third_party/python/Objects/ |
D | dictobject.c | 2419 const char *methname) in dict_update_common() argument 2424 if (!PyArg_UnpackTuple(args, methname, 0, 1, &arg)) { in dict_update_common()
|