summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-03-14 21:06:21 (GMT)
committerThomas Heller <theller@ctypes.org>2008-03-14 21:06:21 (GMT)
commit41e22ff5ccf6c86ca27ffa7af1f7495caad9640e (patch)
treea75f340e7b1cec5c3ebed86d65333ec5e54356d0 /Modules
parentc23b8a7af9b1548b645a79c5ea37a3ba780750ab (diff)
downloadcpython-41e22ff5ccf6c86ca27ffa7af1f7495caad9640e.zip
cpython-41e22ff5ccf6c86ca27ffa7af1f7495caad9640e.tar.gz
cpython-41e22ff5ccf6c86ca27ffa7af1f7495caad9640e.tar.bz2
Remove unneeded initializer.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ctypes/_ctypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c
index ea7e40d..eab462d 100644
--- a/Modules/_ctypes/_ctypes.c
+++ b/Modules/_ctypes/_ctypes.c
@@ -208,7 +208,7 @@ static PyTypeObject DictRemover_Type = {
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
- PyType_GenericNew, /* tp_new */
+ 0, /* tp_new */
0, /* tp_free */
};