diff options
Diffstat (limited to 'Include/py_curses.h')
-rw-r--r-- | Include/py_curses.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/py_curses.h b/Include/py_curses.h index 2702b37..b70252d 100644 --- a/Include/py_curses.h +++ b/Include/py_curses.h @@ -64,7 +64,7 @@ typedef struct { char *encoding; } PyCursesWindowObject; -#define PyCursesWindow_Check(v) (Py_TYPE(v) == &PyCursesWindow_Type) +#define PyCursesWindow_Check(v) Py_IS_TYPE(v, &PyCursesWindow_Type) #define PyCurses_CAPSULE_NAME "_curses._C_API" @@ -97,4 +97,3 @@ static const char catchall_NULL[] = "curses function returned NULL"; #endif /* !defined(Py_CURSES_H) */ - |