issue #28144: Decrease empty_keys_struct's dk_refcnt
since there is no dummy_struct any more.
Patch by Xiang Zhang.
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 36ea8f1..fe19445 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -419,7 +419,7 @@
  * (which cannot fail and thus can do no allocation).
  */
 static PyDictKeysObject empty_keys_struct = {
-        2, /* dk_refcnt 1 for this struct, 1 for dummy_struct */
+        1, /* dk_refcnt */
         1, /* dk_size */
         lookdict_split, /* dk_lookup */
         0, /* dk_usable (immutable) */