Commit a27474c3 authored by Raymond Hettinger's avatar Raymond Hettinger

Issue 3230: Do not the set specific size macro.

parent 77cec6ea
......@@ -1253,7 +1253,7 @@ dict_fromkeys(PyObject *cls, PyObject *args)
PyObject *key;
long hash;
if (dictresize(mp, PySet_GET_SIZE(seq)))
if (dictresize(mp, Py_SIZE(seq)))
return NULL;
while (_PyDict_Next(seq, &pos, &key, &oldvalue, &hash)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment