From dee6e252cc59c3143786f3e4cfaa1a6c335381b6 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 8 Sep 2016 11:16:07 -0700 Subject: Split lookdict_unicode_nodummy() assertion to debug Issue #27350. --- Objects/dictobject.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 98515e9..cd25803 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -802,7 +802,8 @@ lookdict_unicode_nodummy(PyDictObject *mp, PyObject *key, return DKIX_EMPTY; } ep = &ep0[ix]; - assert(ep->me_key != NULL && PyUnicode_CheckExact(ep->me_key)); + assert(ep->me_key != NULL); + assert(PyUnicode_CheckExact(ep->me_key)); if (ep->me_key == key || (ep->me_hash == hash && unicode_eq(ep->me_key, key))) { if (hashpos != NULL) -- cgit v0.12