diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-09 18:10:51 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-09 18:10:51 +0000 |
commit | 06ad1872ecef63c64971c16de350d5628d8cb4b3 (patch) | |
tree | 07498fcb7fe8f43053f7b50f5ecc5dd69f49484e /Python/bltinmodule.c | |
parent | acbf3c312be5a53ad023d70e9303589f22d21be9 (diff) | |
download | cpython-06ad1872ecef63c64971c16de350d5628d8cb4b3.tar.gz |
these builtins have to be initialized
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 7a27fba42e..c33a37ea13 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -317,8 +317,6 @@ typedef struct { PyObject *it; } filterobject; -PyTypeObject PyFilter_Type; - static PyObject * filter_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { @@ -913,8 +911,6 @@ typedef struct { PyObject *func; } mapobject; -PyTypeObject PyMap_Type; - static PyObject * map_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { @@ -2031,8 +2027,6 @@ typedef struct { PyObject *result; } zipobject; -PyTypeObject PyZip_Type; - static PyObject * zip_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { |