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 Oz.Tiram
Recipients Oz.Tiram, docs@python
Date 2020-01-15.23:41:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1579131684.91.0.584754331907.issue39348@roundup.psfhosted.org>
In-reply-to
Content
The code block for the isn't hightlighted:



Changed in version 3.7: When SOCK_NONBLOCK or SOCK_CLOEXEC bit flags are applied to type they are cleared, and socket.type will not reflect them. They are still passed to the underlying system socket() call. Therefore::

    sock = socket.socket(

...

This is because the double colon is directly after the word Therefore.


This fix is very simple:

       :attr:`socket.type` will not reflect them.  They are still passed
-      to the underlying system `socket()` call.  Therefore::
+      to the underlying system `socket()` call.  Therefore,
+
+      ::
 
           sock = socket.socket(
               socket.AF_INET,
       ...


I have prepared a PR for this.
History
Date User Action Args
2020-01-15 23:41:24Oz.Tiramsetrecipients: + Oz.Tiram, docs@python
2020-01-15 23:41:24Oz.Tiramsetmessageid: <1579131684.91.0.584754331907.issue39348@roundup.psfhosted.org>
2020-01-15 23:41:24Oz.Tiramlinkissue39348 messages
2020-01-15 23:41:24Oz.Tiramcreate