diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-05-31 04:34:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-31 04:34:34 (GMT) |
commit | a5c42284e69fb309bdd17ee8c1c120d1be383012 (patch) | |
tree | 4309186f7e192e3ac29a8992f81de906211feb51 | |
parent | 5d6c7ed5e340b2311a15f34e968d4bef09c71922 (diff) | |
download | cpython-a5c42284e69fb309bdd17ee8c1c120d1be383012.zip cpython-a5c42284e69fb309bdd17ee8c1c120d1be383012.tar.gz cpython-a5c42284e69fb309bdd17ee8c1c120d1be383012.tar.bz2 |
bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)
-rw-r--r-- | Modules/_collectionsmodule.c | 7 | ||||
-rw-r--r-- | Parser/asdl_c.py | 3 | ||||
-rw-r--r-- | Python/Python-ast.c | 3 |
3 files changed, 8 insertions, 5 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 55132e7..65d556c 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -575,7 +575,7 @@ deque_concat(dequeobject *deque, PyObject *other) return new_deque; } -static void +static int deque_clear(dequeobject *deque) { block *b; @@ -587,7 +587,7 @@ deque_clear(dequeobject *deque) PyObject **itemptr, **limit; if (Py_SIZE(deque) == 0) - return; + return 0; /* During the process of clearing a deque, decrefs can cause the deque to mutate. To avoid fatal confusion, we have to make the @@ -648,7 +648,7 @@ deque_clear(dequeobject *deque) } CHECK_END(leftblock->rightlink); freeblock(leftblock); - return; + return 0; alternate_method: while (Py_SIZE(deque)) { @@ -656,6 +656,7 @@ deque_clear(dequeobject *deque) assert (item != NULL); Py_DECREF(item); } + return 0; } static PyObject * diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index 399e79e..44e3d40 100644 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -647,10 +647,11 @@ ast_traverse(AST_object *self, visitproc visit, void *arg) return 0; } -static void +static int ast_clear(AST_object *self) { Py_CLEAR(self->dict); + return 0; } static int diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 38b9292..6a2f28e 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -528,10 +528,11 @@ ast_traverse(AST_object *self, visitproc visit, void *arg) return 0; } -static void +static int ast_clear(AST_object *self) { Py_CLEAR(self->dict); + return 0; } static int |