diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-29 22:25:45 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-29 22:25:45 (GMT) |
commit | a427a2b8d09a756119d424efac85159a0270b503 (patch) | |
tree | f94a983fe68890ca1b91d7dedefaebcd81284597 /Python/bltinmodule.c | |
parent | 7ad2d1eb8eaf8db634b440ef3c4f5a1b9b654cb5 (diff) | |
download | cpython-a427a2b8d09a756119d424efac85159a0270b503.zip cpython-a427a2b8d09a756119d424efac85159a0270b503.tar.gz cpython-a427a2b8d09a756119d424efac85159a0270b503.tar.bz2 |
Rename "dictionary" (type and constructor) to "dict".
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ _PyBuiltin_Init(void) #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); |