Repaired illegal syntax most compilers probably let slide (but MSVC
treats as a fatal error).
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index e2dace8..4b70a81 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -719,7 +719,7 @@
 			}
 		}
 		goto again;
-	  skip:
+	  skip: ;
 	}
 
 	PyMem_FREE(remain);