diff options
author | Yury Selivanov <yury@magic.io> | 2016-11-08 19:20:08 -0500 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-11-08 19:20:08 -0500 |
commit | ff0273fb20470fd48d4df92c7cd67cb4ec409b57 (patch) | |
tree | e4e1911591f416b457d37d84e7918d5aec1afdea /Objects/genobject.c | |
parent | bb5e522d45c26d66a867f899726631924e46a462 (diff) | |
parent | 49ffdf6bb280e2ed3652cac6e3e371dade7f2f2b (diff) | |
download | cpython-git-ff0273fb20470fd48d4df92c7cd67cb4ec409b57.tar.gz |
Merge 3.6
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 70d6e1492a..abe9b570b6 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 */ }; |