diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-07 03:37:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 03:37:06 +0100 |
commit | daa9756cb6395323d6f291efe5c7d7fdc6b2e9d8 (patch) | |
tree | 363abf13e467be17feb0e3eeffc3abe73c437264 /Modules/parsermodule.c | |
parent | 58ac700fb09497df14d4492b6f820109490b2b88 (diff) | |
download | cpython-git-daa9756cb6395323d6f291efe5c7d7fdc6b2e9d8.tar.gz |
bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)
Replace direct access to PyObject.ob_type with Py_TYPE().
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r-- | Modules/parsermodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index ef63ca936e..f00329b354 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -256,7 +256,7 @@ PyTypeObject PyST_Type = { /* PyST_Type isn't subclassable, so just check ob_type */ -#define PyST_Object_Check(v) ((v)->ob_type == &PyST_Type) +#define PyST_Object_Check(v) (Py_TYPE(v) == &PyST_Type) static int parser_compare_nodes(node *left, node *right) |