diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2020-02-14 02:37:17 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 18:37:17 +0100 |
commit | d905df766c367c350f20c46ccd99d4da19ed57d8 (patch) | |
tree | 9e08a6c88d6b0dd4e73810c3f3a152b61bd773aa /Include/unicodeobject.h | |
parent | bpo-39573: Fix bad copy-paste in Py_SET_SIZE (GH-18496) (diff) | |
download | cpython-d905df766c367c350f20c46ccd99d4da19ed57d8.tar.gz cpython-d905df766c367c350f20c46ccd99d4da19ed57d8.tar.bz2 cpython-d905df766c367c350f20c46ccd99d4da19ed57d8.zip |
bpo-39573: Add Py_IS_TYPE() function (GH-18488)
Co-Author: Neil Schemenauer <nas-github@arctrix.com>
Diffstat (limited to 'Include/unicodeobject.h')
-rw-r--r-- | Include/unicodeobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 4dea4942181..500ce242e9f 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -113,7 +113,7 @@ PyAPI_DATA(PyTypeObject) PyUnicodeIter_Type; #define PyUnicode_Check(op) \ PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS) -#define PyUnicode_CheckExact(op) (Py_TYPE(op) == &PyUnicode_Type) +#define PyUnicode_CheckExact(op) Py_IS_TYPE(op, &PyUnicode_Type) /* --- Constants ---------------------------------------------------------- */ |