-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-34369: make kqueue.control() docs better reflect that timeout is positional-only #9499
bpo-34369: make kqueue.control() docs better reflect that timeout is positional-only #9499
Conversation
I removed the " needs backport to 3.6" label, the 3.6 branch no longer accept bugfixes (only security fixes are accepted): https://devguide.python.org/#status-of-python-branches |
With the new positional-only argument syntax in 3.8, perhaps we should use that syntax in these docs? |
I suggest to leave 3.8 doc unchanged: see https://bugs.python.org/issue37134 discussion and so only modify the doc in the master branch. cc @pablogsal |
According to the steering council decision, we shouldn't use PEP 580 syntax here at all until further notice. |
Thanks @taleinat for the PR 🌮🎉.. I'm working now to backport this PR to: 2.7, 3.7, 3.8. |
GH-14704 is a backport of this pull request to the 3.8 branch. |
…positional-only (pythonGH-9499) (cherry picked from commit 79042ac) Co-authored-by: Tal Einat <taleinat@gmail.com>
GH-14705 is a backport of this pull request to the 3.7 branch. |
…positional-only (pythonGH-9499) (cherry picked from commit 79042ac) Co-authored-by: Tal Einat <taleinat@gmail.com>
GH-14706 is a backport of this pull request to the 2.7 branch. |
…positional-only (pythonGH-9499) (cherry picked from commit 79042ac) Co-authored-by: Tal Einat <taleinat@gmail.com>
This improves consistency with the rest of the select module's doc page, e.g.
select.select()
.https://bugs.python.org/issue34369