This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author berker.peksag
Recipients a.badger, berker.peksag, taleinat, xtreak
Date 2018-08-10.12:00:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1533902401.2.0.56676864532.issue34369@psf.upfronthosting.co.za>
In-reply-to
Content
This is probably a regression from the Argument Clinic conversion.

Another docstring mismatches:

select(rlist, wlist, xlist, timeout=None, /)
    Wait until one or more file descriptors are ready for some kind of I/O.


>>> select.select(timeout=0.1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: select() takes no keyword arguments


poll(timeout=None, /) method of select.poll instance
    Polls the set of registered file descriptors.

>>> select.poll().poll(timeout=0.1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: poll() takes no keyword arguments
History
Date User Action Args
2018-08-10 12:00:01berker.peksagsetrecipients: + berker.peksag, taleinat, a.badger, xtreak
2018-08-10 12:00:01berker.peksagsetmessageid: <1533902401.2.0.56676864532.issue34369@psf.upfronthosting.co.za>
2018-08-10 12:00:01berker.peksaglinkissue34369 messages
2018-08-10 12:00:01berker.peksagcreate