From 06ad1872ecef63c64971c16de350d5628d8cb4b3 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 9 May 2009 18:10:51 +0000 Subject: these builtins have to be initialized --- Python/bltinmodule.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Python/bltinmodule.c') 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) { -- cgit v1.2.1