diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-11-12 16:48:25 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-11-12 16:48:25 -0500 |
commit | 9845da8acd3a38eabc247666f9968d3db78a7bdc (patch) | |
tree | 09badcc5e6d41892fb97db0ff41c5760fa000fe8 /Python/bltinmodule.c | |
parent | 79b2bfe430a7ab9493f737ce2eddb080170dd0e5 (diff) | |
parent | cabe5e76cfca05fc7dc4b67c252af57ce8d74474 (diff) | |
download | cpython-9845da8acd3a38eabc247666f9968d3db78a7bdc.tar.gz |
merge 3.3
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 0e6e6ff9ff..fac64bcc69 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2405,6 +2405,12 @@ PyObject * _PyBuiltin_Init(void) { PyObject *mod, *dict, *debug; + + if (PyType_Ready(&PyFilter_Type) < 0 || + PyType_Ready(&PyMap_Type) < 0 || + PyType_Ready(&PyZip_Type) < 0) + return NULL; + mod = PyModule_Create(&builtinsmodule); if (mod == NULL) return NULL; |