[issue35414] A reference counting bug in PyState_RemoveModule()

2020-10-18 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35414] A reference counting bug in PyState_RemoveModule()

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread miss-islington
miss-islington added the comment: New changeset afb07fccf013f20b89b33516f126695388be47b9 by Miss Islington (bot) in branch '3.6': bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10914)

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread miss-islington
miss-islington added the comment: New changeset 2d594f857865a4719876ac545ddfd62f474522cd by Miss Islington (bot) in branch '3.7': bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10914)

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +10155 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2a893430c9c8378cbdfac95895a64fa07aaff9ed by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10914)

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +10154 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35414] A reference counting bug in PyState_RemoveModule()

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

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread Zackery Spytz
New submission from Zackery Spytz : There's a missing Py_INCREF(Py_None) in PyState_RemoveModule(). -- components: Interpreter Core messages: 331091 nosy: ZackerySpytz priority: normal severity: normal status: open title: A reference counting bug in PyState_RemoveModule() versions: