commit | 752abd0d3cc66f84f551650b8424248b202a16a4 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Tue May 13 04:55:24 2008 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Tue May 13 04:55:24 2008 +0000 |
tree | f5302f8a246115f3f61a1414a94c8d2ce12a3a01 | |
parent | 8321f978918e3ae4de18672770c6504dcae82343 [diff] [blame] |
Convert a lot of print statements to print functions in docstrings, documentation, and unused/rarely used functions.
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 9a3af1d..d7164da 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst
@@ -866,7 +866,7 @@ s.ioctl(socket.SIO_RCVALL, socket.RCVALL_ON) # receive a package - print s.recvfrom(65565) + print(s.recvfrom(65565)) # disabled promiscuous mode s.ioctl(socket.SIO_RCVALL, socket.RCVALL_OFF)