diff options
author | Yury Selivanov <yury@magic.io> | 2016-11-09 00:19:52 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-11-09 00:19:52 (GMT) |
commit | 49ffdf6bb280e2ed3652cac6e3e371dade7f2f2b (patch) | |
tree | e5de001d316cfba456f793296bafecdae48e5d40 /Objects/genobject.c | |
parent | a054f40e84b924996f372ba10da969b6b05f77e6 (diff) | |
parent | 33499b7eed8a0c719636dba4b5727246cf2ffa9a (diff) | |
download | cpython-49ffdf6bb280e2ed3652cac6e3e371dade7f2f2b.zip cpython-49ffdf6bb280e2ed3652cac6e3e371dade7f2f2b.tar.gz cpython-49ffdf6bb280e2ed3652cac6e3e371dade7f2f2b.tar.bz2 |
Merge 3.5
Diffstat (limited to 'Objects/genobject.c')
-rw-r--r-- | Objects/genobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/genobject.c b/Objects/genobject.c index 70d6e14..abe9b57 100644 --- a/Objects/genobject.c +++ b/Objects/genobject.c @@ -1123,7 +1123,7 @@ PyTypeObject _PyCoroWrapper_Type = { 0, /* tp_init */ 0, /* tp_alloc */ 0, /* tp_new */ - PyObject_Del, /* tp_free */ + 0, /* tp_free */ }; PyObject * @@ -1208,7 +1208,7 @@ PyTypeObject _PyAIterWrapper_Type = { 0, /* tp_init */ 0, /* tp_alloc */ 0, /* tp_new */ - PyObject_Del, /* tp_free */ + 0, /* tp_free */ }; |