diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-07 02:37:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 02:37:06 (GMT) |
commit | daa9756cb6395323d6f291efe5c7d7fdc6b2e9d8 (patch) | |
tree | 363abf13e467be17feb0e3eeffc3abe73c437264 /Modules/_json.c | |
parent | 58ac700fb09497df14d4492b6f820109490b2b88 (diff) | |
download | cpython-daa9756cb6395323d6f291efe5c7d7fdc6b2e9d8.zip cpython-daa9756cb6395323d6f291efe5c7d7fdc6b2e9d8.tar.gz cpython-daa9756cb6395323d6f291efe5c7d7fdc6b2e9d8.tar.bz2 |
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/_json.c')
-rw-r--r-- | Modules/_json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_json.c b/Modules/_json.c index 3e4fe79..a70043b 100644 --- a/Modules/_json.c +++ b/Modules/_json.c @@ -1617,7 +1617,7 @@ encoder_listencode_dict(PyEncoderObject *s, _PyAccu *acc, else { PyErr_Format(PyExc_TypeError, "keys must be str, int, float, bool or None, " - "not %.100s", key->ob_type->tp_name); + "not %.100s", Py_TYPE(key)->tp_name); goto bail; } |