mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Make the Py<type>_Check() macro use PyObject_TypeCheck().
This commit is contained in:
parent
deb77e8394
commit
5eef77a21b
3 changed files with 3 additions and 3 deletions
|
@ -372,7 +372,7 @@ typedef struct {
|
|||
|
||||
extern DL_IMPORT(PyTypeObject) PyUnicode_Type;
|
||||
|
||||
#define PyUnicode_Check(op) (((op)->ob_type == &PyUnicode_Type))
|
||||
#define PyUnicode_Check(op) PyObject_TypeCheck(op, &PyUnicode_Type)
|
||||
|
||||
/* Fast access macros */
|
||||
#define PyUnicode_GET_SIZE(op) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue