Home
last modified time | relevance | path

Searched refs:methname (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/test/
Dtest_shlex.py371 for methname in dir(ShlexTest):
372 if methname.startswith("test") and methname != "testCompat":
373 delattr(ShlexTest, methname)
Dtest_trace.py215 for methname in ['inst_method_linear',]:
218 method = getattr(traced_obj, methname)
Dtest_set.py1699 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))
Dtest_bytes.py1855 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/
Drubydomain.py288 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/
Dasdl.py133 methname = "visit" + klass.__name__
134 meth = getattr(self, methname, None)
/third_party/python/Objects/
Ddictobject.c2419 const char *methname) in dict_update_common() argument
2424 if (!PyArg_UnpackTuple(args, methname, 0, 1, &arg)) { in dict_update_common()