[issue35356] A possible reference leak in the nis module

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

[issue35356] A possible reference leak in the nis module

2018-11-30 Thread miss-islington
miss-islington added the comment: New changeset f3fe21a3cacbc5d13c3e61cefb36ce0efe617cd7 by Miss Islington (bot) in branch '2.7': bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808) https://github.com/python/cpython/commit/f3fe21a3cacbc5d13c3e61cefb36ce0efe617cd7 --

[issue35356] A possible reference leak in the nis module

2018-11-30 Thread miss-islington
miss-islington added the comment: New changeset e604b6c53e7dce6d4cf52525f4ae57352d489cba by Miss Islington (bot) in branch '3.7': bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808) https://github.com/python/cpython/commit/e604b6c53e7dce6d4cf52525f4ae57352d489cba --

[issue35356] A possible reference leak in the nis module

2018-11-30 Thread miss-islington
miss-islington added the comment: New changeset 3473ca424142cb8f1453ba802ba642060b5ce779 by Miss Islington (bot) in branch '3.6': bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808) https://github.com/python/cpython/commit/3473ca424142cb8f1453ba802ba642060b5ce779 --

[issue35356] A possible reference leak in the nis module

2018-11-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +10057 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35356] A possible reference leak in the nis module

2018-11-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a2e3585e79c93b2372dbad46a744e28fcc6dad6d by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808)

[issue35356] A possible reference leak in the nis module

2018-11-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +10056 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35356] A possible reference leak in the nis module

2018-11-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +10055 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35356] A possible reference leak in the nis module

2018-11-29 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +10054 stage: -> patch review ___ Python tracker ___ ___

[issue35356] A possible reference leak in the nis module

2018-11-29 Thread Zackery Spytz
New submission from Zackery Spytz : In nis_maps(), the result of PyUnicode_FromString() is leaked if the PyList_Append() call fails. -- components: Extension Modules messages: 330747 nosy: ZackerySpytz priority: normal severity: normal status: open title: A possible reference leak in