]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-32604: Fix reference leak in select module (GH-20600)
authorVictor Stinner <vstinner@python.org>
Wed, 3 Jun 2020 12:36:46 +0000 (14:36 +0200)
committerGitHub <noreply@github.com>
Wed, 3 Jun 2020 12:36:46 +0000 (14:36 +0200)
commit18a90248fdd92b27098cc4db773686a2d10a4d24
tree8b12f07f0eeda0c0d401465487d9c9353412fd68
parent317bab0bf61e4cbab37c81baf185d8b57ca62a6b
bpo-32604: Fix reference leak in select module (GH-20600)

Fix reference leak in PyInit_select() of the select module:
remove Py_INCREF(poll_Type).
Misc/NEWS.d/next/Library/2020-06-02-23-49-07.bpo-32604.ZN4V4l.rst [new file with mode: 0644]
Modules/selectmodule.c