Rename "dictionary" (type and constructor) to "dict".
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index ac2aa5a..5f5ae4c 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1848,7 +1848,7 @@
 #ifndef WITHOUT_COMPLEX
 	SETBUILTIN("complex",		&PyComplex_Type);
 #endif
-	SETBUILTIN("dictionary",	&PyDict_Type);
+	SETBUILTIN("dict",		&PyDict_Type);
 	SETBUILTIN("float",		&PyFloat_Type);
 	SETBUILTIN("property",		&PyProperty_Type);
 	SETBUILTIN("int",		&PyInt_Type);