Home
last modified time | relevance | path

Searched refs:instancemethod (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_new.py37 im = new.instancemethod(break_yolks, c, C)
50 im = new.instancemethod(break_yolks, c)
55 self.assertRaises(TypeError, new.instancemethod, break_yolks, None)
58 self.assertRaises(TypeError, new.instancemethod, break_yolks, c, kw=1)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dnew.py14 from types import MethodType as instancemethod unknown