[issue33677] Fix signatures of tp_clear handlers

2018-05-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33677] Fix signatures of tp_clear handlers

2018-05-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset db1074244d2c12961799f6f9353ae191f59cc497 by Serhiy Storchaka in branch '2.7': [2.7] bpo-33677: Fix the signature of tp_clear handler for deque. (GH-7196). (GH-7277) https://github.com/python/cpython/commit/db1074244d2c12961799f6f9353ae191f59c

[issue33677] Fix signatures of tp_clear handlers

2018-05-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 0fe3be03926c3468ed4c10980d1a030c8ef4e37e by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6': bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) (GH-7269) https://github.com/python/cpython/commit/0fe3be03926c34

[issue33677] Fix signatures of tp_clear handlers

2018-05-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +6902 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue33677] Fix signatures of tp_clear handlers

2018-05-30 Thread miss-islington
miss-islington added the comment: New changeset a4dd46a47fe1d4fe1f1738c2f5b3712de41056b9 by Miss Islington (bot) in branch '3.7': bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) https://github.com/python/cpython/commit/a4dd46a47fe1d4fe1f1738c2f5b3712de41056b9 ---

[issue33677] Fix signatures of tp_clear handlers

2018-05-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +6897 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33677] Fix signatures of tp_clear handlers

2018-05-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +6896 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33677] Fix signatures of tp_clear handlers

2018-05-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a5c42284e69fb309bdd17ee8c1c120d1be383012 by Serhiy Storchaka in branch 'master': bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) https://github.com/python/cpython/commit/a5c42284e69fb309bdd17ee8c1c120d1be383012 --

[issue33677] Fix signatures of tp_clear handlers

2018-05-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +6830 stage: -> patch review ___ Python tracker ___ ___ Python-bugs

[issue33677] Fix signatures of tp_clear handlers

2018-05-29 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : The tp_clear handler should be a pointer to the function that returns int. typedef int (*inquiry)(PyObject *); Two handlers in the stdlib (for AST and deque objects) return void instead. The following PR fixes this. -- components: Extension