Don't use Py_SIZE for dict object. (#747)

diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 1b1486a..aac7ac4 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1915,7 +1915,7 @@
             PyObject *key;
             Py_hash_t hash;
 
-            if (dictresize(mp, ESTIMATE_SIZE(Py_SIZE(iterable)))) {
+            if (dictresize(mp, ESTIMATE_SIZE(PyDict_GET_SIZE(iterable)))) {
                 Py_DECREF(d);
                 return NULL;
             }