commit | 14d289be60a2ad4cb65990a63ed2e75e9a8cb3ec | [log] [tgz] |
---|---|---|
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Sat May 26 01:33:23 2018 -0700 |
committer | GitHub <noreply@github.com> | Sat May 26 01:33:23 2018 -0700 |
tree | 19436c5534ce3b480aad0fd64f35b80c99dce276 | |
parent | af1d007bdb3d74cf107d1ad569f4d344f8c57fb8 [diff] [blame] |
bpo-33644: Fix signatures of tp_finalize handlers in testing code. (GH-7111) (cherry picked from commit 19de8b3dd742fb53681478ad4fff57ed7c37a953) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
diff --git a/Modules/xxlimited.c b/Modules/xxlimited.c index 5041ac8..5586989 100644 --- a/Modules/xxlimited.c +++ b/Modules/xxlimited.c
@@ -47,11 +47,10 @@ return 0; } -static int +static void Xxo_finalize(XxoObject *self) { Py_CLEAR(self->x_attr); - return 0; } static PyObject *