The None ObjectΒΆ
Note that the :ctype:`PyTypeObject` for None
is not directly exposed in the
Python/C API. Since None
is a singleton, testing for object identity (using
==
in C) is sufficient. There is no :cfunc:`PyNone_Check` function for the
same reason.