Message209432
Here is the updated patch for type module based on Zachary's comment.
However, I can not convert this method.
{"__subclasshook__", object_subclasshook, METH_CLASS | METH_VARARGS,
object_subclasshook_doc},
static PyObject *
object_subclasshook(PyObject *cls, PyObject *args)
{
Py_RETURN_NOTIMPLEMENTED;
}
>>> type.__subclasshook__()
NotImplemented
>>> type.__subclasshook__('cutecat')
NotImplemented
>>> type.__subclasshook__('cutecat', 1, [])
NotImplemented |
|
| Date |
User |
Action |
Args |
| 2014-01-27 10:36:51 | vajrasky | set | recipients:
+ vajrasky, larry, nadeem.vawda, serhiy.storchaka |
| 2014-01-27 10:36:51 | vajrasky | set | messageid: <[email protected]> |
| 2014-01-27 10:36:51 | vajrasky | link | issue20185 messages |
| 2014-01-27 10:36:51 | vajrasky | create | |
|