diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-07 02:04:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 02:04:21 (GMT) |
commit | 58ac700fb09497df14d4492b6f820109490b2b88 (patch) | |
tree | d6a87b277dd133543974b1b24cf65df4c5c8eff4 /Objects/dictobject.c | |
parent | a102ed7d2f0e7e05438f14d5fb72ca0358602249 (diff) | |
download | cpython-58ac700fb09497df14d4492b6f820109490b2b88.zip cpython-58ac700fb09497df14d4492b6f820109490b2b88.tar.gz cpython-58ac700fb09497df14d4492b6f820109490b2b88.tar.bz2 |
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Replace direct access to PyObject.ob_type with Py_TYPE().
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index ae6b50f..164104e 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -4015,7 +4015,7 @@ _PyDictView_New(PyObject *dict, PyTypeObject *type) /* XXX Get rid of this restriction later */ PyErr_Format(PyExc_TypeError, "%s() requires a dict argument, not '%s'", - type->tp_name, dict->ob_type->tp_name); + type->tp_name, Py_TYPE(dict)->tp_name); return NULL; } dv = PyObject_GC_New(_PyDictViewObject, type); |