[issue32020] arraymodule: Missing Py_DECREF in failure case of make_array()

2017-11-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution Mathew! -- ___ Python tracker ___

[issue32020] arraymodule: Missing Py_DECREF in failure case of make_array()

2017-11-13 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6 ___ Python tracker

[issue32020] arraymodule: Missing Py_DECREF in failure case of make_array()

2017-11-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 18056fb11e6fe6e5247cd03073bd74df8ac0acc7 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6': bpo-32020: arraymodule: Correct missing Py_DECREF in failure case of make_array() (GH-4391) (#4392)

[issue32020] arraymodule: Missing Py_DECREF in failure case of make_array()

2017-11-13 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +4340 ___ Python tracker ___

[issue32020] arraymodule: Missing Py_DECREF in failure case of make_array()

2017-11-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 56935a53b11b9a70f3e13e460777ec81a5b9195e by Serhiy Storchaka (Mat M) in branch 'master': bpo-32020: arraymodule: Correct missing Py_DECREF in failure case of make_array() (#4391)

[issue32020] arraymodule: Missing Py_DECREF in failure case of make_array()

2017-11-13 Thread Mathew M.
Change by Mathew M. : -- keywords: +patch pull_requests: +4339 stage: -> patch review ___ Python tracker ___

[issue32020] arraymodule: Missing Py_DECREF in failure case of make_array()

2017-11-13 Thread Mathew M.
New submission from Mathew M. : Similar to issue 32013, just in a different location. For reference: https://github.com/python/cpython/blob/28b624825eb92cb8c96fbf8da267d8d14a61a841/Modules/arraymodule.c#L1932 -- components: Extension Modules messages: 306183