[issue34899] Possible assertion failure due to int_from_bytes_impl()

2018-10-08 Thread Zackery Spytz
Change by Zackery Spytz : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34899] Possible assertion failure due to int_from_bytes_impl()

2018-10-05 Thread miss-islington
miss-islington added the comment: New changeset 1596fea0a329e1f5e4cce0135724881ca5f1d341 by Miss Islington (bot) in branch '3.7': bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705)

[issue34899] Possible assertion failure due to int_from_bytes_impl()

2018-10-05 Thread miss-islington
miss-islington added the comment: New changeset 526929be39e139a7d89f4c363d79c28566f30d71 by Miss Islington (bot) in branch '3.6': bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705)

[issue34899] Possible assertion failure due to int_from_bytes_impl()

2018-10-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +9115 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34899] Possible assertion failure due to int_from_bytes_impl()

2018-10-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +9116 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34899] Possible assertion failure due to int_from_bytes_impl()

2018-10-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 7bb9cd0a6766fd3e7b3c1e8f2315304ae192b34c by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705)

[issue34899] Possible assertion failure due to int_from_bytes_impl()

2018-10-04 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +9090 stage: -> patch review ___ Python tracker ___ ___

[issue34899] Possible assertion failure due to int_from_bytes_impl()

2018-10-04 Thread Zackery Spytz
New submission from Zackery Spytz : If _PyLong_FromByteArray() fails in int_from_bytes_impl(), PyObject_CallFunctionObjArgs() might be called with a live exception. -- components: Interpreter Core messages: 327091 nosy: ZackerySpytz priority: normal severity: normal status: open