"None" 객체
***********

Note that the "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 "PyNone_Check()"
function for the same reason.

PyObject *Py_None

   값의 부재를 나타내는 파이썬 "None" 객체입니다. 이 객체에는 메서드가
   없습니다. 참조 횟수와 관련하여 다른 객체와 마찬가지로 처리해야 합니
   다.

Py_RETURN_NONE

   C 함수 내에서 "Py_None"를 반환하는 것을 올바르게 처리합니다 (즉,
   "None"의 참조 횟수를 증가시키고 반환합니다).
