[issue38116] Make select module PEP-384 compatible

2020-06-22 Thread STINNER Victor
STINNER Victor added the comment: I marked bpo-15703 as a duplicate of this issue. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue38116] Make select module PEP-384 compatible

2020-06-22 Thread STINNER Victor
STINNER Victor added the comment: > PR 15971 is merged, what else is needed @dino.viehland? Nothing, I close the issue. -- nosy: +vstinner resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue38116] Make select module PEP-384 compatible

2019-11-17 Thread Batuhan
Batuhan added the comment: PR 15971 is merged, what else is needed @dino.viehland? -- nosy: +BTaskaya ___ Python tracker ___ ___ Py

[issue38116] Make select module PEP-384 compatible

2019-09-18 Thread Paulo Henrique Silva
Change by Paulo Henrique Silva : -- nosy: +phsilva ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue38116] Make select module PEP-384 compatible

2019-09-14 Thread Dino Viehland
Dino Viehland added the comment: New changeset f919054e539a5c1afde1b31c9fd7a8f5b2313311 by Dino Viehland in branch 'master': bpo-38116: Convert select module to PEP-384 (#15971) https://github.com/python/cpython/commit/f919054e539a5c1afde1b31c9fd7a8f5b2313311 -- ___

[issue38116] Make select module PEP-384 compatible

2019-09-11 Thread Josh Rosenberg
Josh Rosenberg added the comment: Why do you describe these issues (this one, #38069, #38071-#38076, maybe more) as making the module PEP 384 compatible? There is no reason to make the built-in modules stick to the limited API, and it doesn't look like you're doing that in any event (among o

[issue38116] Make select module PEP-384 compatible

2019-09-11 Thread Christian Heimes
Change by Christian Heimes : -- nosy: +christian.heimes type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue38116] Make select module PEP-384 compatible

2019-09-11 Thread Dino Viehland
Change by Dino Viehland : -- keywords: +patch pull_requests: +15604 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15971 ___ Python tracker ___ __

[issue38116] Make select module PEP-384 compatible

2019-09-11 Thread Dino Viehland
New submission from Dino Viehland : Remove static PyTypeObject* definitions and move static data to _selectstate to help improve compatibility w/ subinterpreters and re-use by alternate implementations. -- assignee: dino.viehland components: Extension Modules messages: 351913 nosy: di