Lines Matching refs:Py_INCREF
61 Py_INCREF(args); in BaseException_init()
65 Py_INCREF(PyTuple_GET_ITEM(self->args, 0)); in BaseException_init()
266 Py_INCREF(self->dict); in BaseException_get_dict()
281 Py_INCREF(val); in BaseException_set_dict()
290 Py_INCREF(Py_None); in BaseException_get_args()
293 Py_INCREF(self->args); in BaseException_get_args()
320 Py_INCREF(msg); in BaseException_get_message()
335 Py_INCREF(self->message); in BaseException_get_message()
521 Py_INCREF(PyTuple_GET_ITEM(args, 0)); in SystemExit_init()
525 Py_INCREF(args); in SystemExit_init()
610 Py_INCREF(myerrno); in EnvironmentError_init()
613 Py_INCREF(strerror); in EnvironmentError_init()
618 Py_INCREF(filename); in EnvironmentError_init()
684 Py_INCREF(self->myerrno); in EnvironmentError_str()
688 Py_INCREF(Py_None); in EnvironmentError_str()
692 Py_INCREF(self->strerror); in EnvironmentError_str()
696 Py_INCREF(Py_None); in EnvironmentError_str()
722 Py_INCREF(self->myerrno); in EnvironmentError_str()
726 Py_INCREF(Py_None); in EnvironmentError_str()
730 Py_INCREF(self->strerror); in EnvironmentError_str()
734 Py_INCREF(Py_None); in EnvironmentError_str()
774 Py_INCREF(tmp); in EnvironmentError_reduce()
778 Py_INCREF(tmp); in EnvironmentError_reduce()
781 Py_INCREF(self->filename); in EnvironmentError_reduce()
784 Py_INCREF(args); in EnvironmentError_reduce()
915 Py_INCREF(self->winerror); in WindowsError_str()
919 Py_INCREF(Py_None); in WindowsError_str()
923 Py_INCREF(self->strerror); in WindowsError_str()
927 Py_INCREF(Py_None); in WindowsError_str()
953 Py_INCREF(self->winerror); in WindowsError_str()
957 Py_INCREF(Py_None); in WindowsError_str()
961 Py_INCREF(self->strerror); in WindowsError_str()
965 Py_INCREF(Py_None); in WindowsError_str()
1061 Py_INCREF(PyTuple_GET_ITEM(args, 0)); in SyntaxError_init()
1077 Py_INCREF(PyTuple_GET_ITEM(info, 0)); in SyntaxError_init()
1080 Py_INCREF(PyTuple_GET_ITEM(info, 1)); in SyntaxError_init()
1083 Py_INCREF(PyTuple_GET_ITEM(info, 2)); in SyntaxError_init()
1086 Py_INCREF(PyTuple_GET_ITEM(info, 3)); in SyntaxError_init()
1309 Py_INCREF(attr); in get_string()
1338 Py_INCREF(attr); in get_unicode()
1569 Py_INCREF(self->encoding); in UnicodeError_init()
1570 Py_INCREF(self->object); in UnicodeError_init()
1571 Py_INCREF(self->reason); in UnicodeError_init()
1814 Py_INCREF(self->object); in UnicodeTranslateError_init()
1815 Py_INCREF(self->reason); in UnicodeTranslateError_init()
2047 #define POST_INIT(TYPE) Py_INCREF(PyExc_ ## TYPE); \