Commit 66579f47 authored by Guido van Rossum's avatar Guido van Rossum

Issue #1645 by Alberto Bertogli. Fix a comment.

parent 32225ddd
...@@ -2358,12 +2358,12 @@ See recv() for documentation about the flags."); ...@@ -2358,12 +2358,12 @@ See recv() for documentation about the flags.");
/* /*
* This is the guts of the recv() and recv_into() methods, which reads into a * This is the guts of the recvfrom() and recvfrom_into() methods, which reads
* char buffer. If you have any inc/def ref to do to the objects that contain * into a char buffer. If you have any inc/def ref to do to the objects that
* the buffer, do it in the caller. This function returns the number of bytes * contain the buffer, do it in the caller. This function returns the number
* succesfully read. If there was an error, it returns -1. Note that it is * of bytes succesfully read. If there was an error, it returns -1. Note
* also possible that we return a number of bytes smaller than the request * that it is also possible that we return a number of bytes smaller than the
* bytes. * request bytes.
* *
* 'addr' is a return value for the address object. Note that you must decref * 'addr' is a return value for the address object. Note that you must decref
* it yourself. * it yourself.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment