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 eryksun
Recipients bryangeneolson, eryksun, neologix, paul.moore, pitrou, python-dev, serhiy.storchaka, steve.dower, tim.golden, vstinner, zach.ware
Date 2015-07-27.23:03:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1438038188.52.0.286837134647.issue24732@psf.upfronthosting.co.za>
In-reply-to
Content
LGTM on Windows 7:

    Python 3.5.0b4+ (default, Jul 27 2015, 17:46:34) [MSC v.1900 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import socket
    >>> sock = socket.socket()
    >>> sock.bind(('127.0.0.1', 52380))
    >>> sock.listen(5)
    >>> sock.setblocking(False)
    >>> csock, addr = sock.accept()
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "C:\Source\cpython\3.5\lib\socket.py", line 195, in accept
        fd, addr = self._accept()
    BlockingIOError: [WinError 10035] A non-blocking socket operation could not be completed immediately
History
Date User Action Args
2015-07-27 23:03:08eryksunsetrecipients: + eryksun, paul.moore, pitrou, vstinner, tim.golden, neologix, python-dev, zach.ware, serhiy.storchaka, steve.dower, bryangeneolson
2015-07-27 23:03:08eryksunsetmessageid: <1438038188.52.0.286837134647.issue24732@psf.upfronthosting.co.za>
2015-07-27 23:03:08eryksunlinkissue24732 messages
2015-07-27 23:03:08eryksuncreate