Issue 3230:  Do not the set specific size macro.
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 08a3a1e..5791165 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1253,7 +1253,7 @@
 		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)) {