aboutsummaryrefslogtreecommitdiff
path: root/docs/library/usocket.rst
diff options
context:
space:
mode:
authorJason Neal2020-01-11 19:44:17 +1300
committerDamien George2020-01-12 13:44:59 +1100
commit7ef2f65114f092be6303c145a2560fdf522dcde0 (patch)
tree52ea36a8dc03bc5e6a4b0b4b332a5c8d784d8a39 /docs/library/usocket.rst
parent6632dd3981cbdca8e70c0bf19e36338101e9ce0e (diff)
docs/library: Add / to indicate positional-only args in library docs.
Removes the confusion of positional-only arguments which have defaults that look like keyword arguments.
Diffstat (limited to 'docs/library/usocket.rst')
-rw-r--r--docs/library/usocket.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/library/usocket.rst b/docs/library/usocket.rst
index 461e37b35..e3b9d279a 100644
--- a/docs/library/usocket.rst
+++ b/docs/library/usocket.rst
@@ -66,7 +66,7 @@ Tuple address format for ``socket`` module:
Functions
---------
-.. function:: socket(af=AF_INET, type=SOCK_STREAM, proto=IPPROTO_TCP)
+.. function:: socket(af=AF_INET, type=SOCK_STREAM, proto=IPPROTO_TCP, /)
Create a new socket using the given address family, socket type and
protocol number. Note that specifying *proto* in most cases is not
@@ -79,7 +79,7 @@ Functions
# Create DGRAM UDP socket
socket(AF_INET, SOCK_DGRAM)
-.. function:: getaddrinfo(host, port, af=0, type=0, proto=0, flags=0)
+.. function:: getaddrinfo(host, port, af=0, type=0, proto=0, flags=0, /)
Translate the host/port argument into a sequence of 5-tuples that contain all the
necessary arguments for creating a socket connected to that service. Arguments
@@ -293,7 +293,7 @@ Methods
* ``sock.setblocking(True)`` is equivalent to ``sock.settimeout(None)``
* ``sock.setblocking(False)`` is equivalent to ``sock.settimeout(0)``
-.. method:: socket.makefile(mode='rb', buffering=0)
+.. method:: socket.makefile(mode='rb', buffering=0, /)
Return a file object associated with the socket. The exact returned type depends on the arguments
given to makefile(). The support is limited to binary modes only ('rb', 'wb', and 'rwb').