Add 'super' builtin type.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 77fe384..62bf2a7 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1938,6 +1938,9 @@
 		return NULL;
 	if (PyDict_SetItemString(dict, "str", (PyObject *) &PyString_Type) < 0)
 		return NULL;
+	if (PyDict_SetItemString(dict, "super",
+				 (PyObject *) &PySuper_Type) < 0)
+		return NULL;
 	if (PyDict_SetItemString(dict, "tuple",
 				 (PyObject *) &PyTuple_Type) < 0)
 		return NULL;