Skip to content

Commit a49d630

Browse files
committed
Address code review
1 parent b51b1aa commit a49d630

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/dictobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3290,7 +3290,7 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value)
32903290
return NULL;
32913291

32923292

3293-
if (PyAnyDict_CheckExact(d)) {
3293+
if (PyDict_CheckExact(d)) {
32943294
if (PyDict_CheckExact(iterable)) {
32953295
PyDictObject *mp = (PyDictObject *)d;
32963296

0 commit comments

Comments
 (0)