[issue36745] A possible reference leak in PyObject_SetAttr()

2019-04-28 Thread miss-islington
miss-islington added the comment: New changeset 896c6357f3267fe5dc5a33979f8cf46b0a74cfee by Miss Islington (bot) in branch '3.7': bpo-36745: Fix a possible reference leak in PyObject_SetAttr() (GH-12993) https://github.com/python/cpython/commit/896c6357f3267fe5dc5a33979f8cf46b0a74cfee -

[issue36745] A possible reference leak in PyObject_SetAttr()

2019-04-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +12917 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36745] A possible reference leak in PyObject_SetAttr()

2019-04-28 Thread miss-islington
miss-islington added the comment: New changeset e0dcb85b7d64153d1741698c04a6736c9669603a by Miss Islington (bot) (Zackery Spytz) in branch 'master': bpo-36745: Fix a possible reference leak in PyObject_SetAttr() (GH-12993) https://github.com/python/cpython/commit/e0dcb85b7d64153d1741698c04a67

[issue36745] A possible reference leak in PyObject_SetAttr()

2019-04-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: thanks! -- nosy: +asvetlov resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue36745] A possible reference leak in PyObject_SetAttr()

2019-04-28 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12916 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue36745] A possible reference leak in PyObject_SetAttr()

2019-04-28 Thread Zackery Spytz
New submission from Zackery Spytz : If the PyUnicode_AsUTF8() call happens to fail in PyObject_SetAttr(), "name" will be leaked. -- components: Interpreter Core messages: 341025 nosy: ZackerySpytz priority: normal severity: normal status: open title: A possible reference leak in PyObje