summaryrefslogtreecommitdiff
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c6
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)
{