diff options
author | Thomas Heller <theller@ctypes.org> | 2008-03-14 21:06:21 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2008-03-14 21:06:21 (GMT) |
commit | 41e22ff5ccf6c86ca27ffa7af1f7495caad9640e (patch) | |
tree | a75f340e7b1cec5c3ebed86d65333ec5e54356d0 /Modules | |
parent | c23b8a7af9b1548b645a79c5ea37a3ba780750ab (diff) | |
download | cpython-41e22ff5ccf6c86ca27ffa7af1f7495caad9640e.zip cpython-41e22ff5ccf6c86ca27ffa7af1f7495caad9640e.tar.gz cpython-41e22ff5ccf6c86ca27ffa7af1f7495caad9640e.tar.bz2 |
Remove unneeded initializer.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ctypes/_ctypes.c | 2 |
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 */ }; |