Change getbuiltin interface to get the name as an object;
call dict2lookup insteead of dictlookup.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 128d37e..01cd5fa 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -521,9 +521,9 @@
 
 object *
 getbuiltin(name)
-	char *name;
+	object *name;
 {
-	return dictlookup(builtin_dict, name);
+	return dict2lookup(builtin_dict, name);
 }
 
 /* Predefined exceptions */