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 yselivanov
Recipients asvetlov, christian.heimes, methane, njs, pitrou, vstinner, yselivanov
Date 2017-12-16.03:46:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513395969.41.0.213398074469.issue32331@psf.upfronthosting.co.za>
In-reply-to
Content
There's also a precedent of us breaking socket API.  In Python < 3.6:

  sock = socket.socket()
  fd = sock.fileno()
  os.close(fd)
  sock.close()

Everything works fine.  In 3.6+:

  sock.close()  # Will raise OSError

uvloop broke on this during the beta period and I fixed the issue quickly.  I don't remember seeing any complaints about this, so I suspect that this issue wasn't a big deal, people just fixed their code.
History
Date User Action Args
2017-12-16 03:46:09yselivanovsetrecipients: + yselivanov, pitrou, vstinner, christian.heimes, njs, asvetlov, methane
2017-12-16 03:46:09yselivanovsetmessageid: <1513395969.41.0.213398074469.issue32331@psf.upfronthosting.co.za>
2017-12-16 03:46:09yselivanovlinkissue32331 messages
2017-12-16 03:46:08yselivanovcreate