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.
Created on 2009年05月12日 14:19 by kiilerix, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| socket.patch | nicdumz, 2009年08月24日 08:12 | Documentation patch for socket and socketserver | review | |
| socket-sendall-doc-2.7.patch | bbrazil, 2010年08月08日 14:36 | Updated patch for 2.7. | review | |
| socket-sendall-doc-py3k.patch | bbrazil, 2010年08月08日 14:36 | Adapted patch for py3k. | review | |
| Messages (7) | |||
|---|---|---|---|
| msg87633 - (view) | Author: Mads Kiilerich (kiilerix) * | Date: 2009年05月12日 14:19 | |
http://docs.python.org/library/socket.html says about socket.send: "Applications are responsible for checking that all data has been sent; if only some of the data was transmitted, the application needs to attempt delivery of the remaining data." And about socket.sendall: "Unlike send(), this method continues to send data from string until either all data has been sent or an error occurs." However, the examples on the same page uses plain conn.send(data) without checking anything. That is misleading. A solution could be to use conn.sendall(data) instead. |
|||
| msg91907 - (view) | Author: Nicolas Dumazet (nicdumz) | Date: 2009年08月24日 08:12 | |
I'm including a patch which replaces send by sendall in the examples in both socket and socketserver. |
|||
| msg113268 - (view) | Author: Brian Brazil (bbrazil) * | Date: 2010年08月08日 14:36 | |
I've updated this patch to apply cleanly to 2.7, and also adapted it to for py3k. I added a small tweak to the example description in socket.rst. I've tested the instructions for both 2.7 and 3k and verified they still work as expected. |
|||
| msg128198 - (view) | Author: Sandro Tosi (sandro.tosi) * (Python committer) | Date: 2011年02月08日 23:06 | |
Hi all, I was looking at this issue and thought: ok the module documentation uses send() not correctly, so we should fix that; the fastest solution is using sendall(). But then searching fro some examples in the code on internet, I found that the python docs contain a "Socket Programming HOWTO" that uses send() the way it should be. So, should we: - replace send() with sendall() in socket module documentation (explaining it was done to not clutter examples) and - add a reference to the socket programming howto to show a way to use send() correctly? Cheers, Sandro |
|||
| msg152935 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年02月09日 09:44 | |
New changeset aa6415d1e160 by Senthil Kumaran in branch '2.7': Fix Issue #6005: Examples in the socket library documentation use sendall, http://hg.python.org/cpython/rev/aa6415d1e160 |
|||
| msg152936 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年02月09日 09:56 | |
New changeset 2aae44aa041a by Senthil Kumaran in branch '3.2': Fix Issue #6005: Examples in the socket library documentation use sendall, http://hg.python.org/cpython/rev/2aae44aa041a New changeset e9c3df45920e by Senthil Kumaran in branch 'default': merged from 3.2 http://hg.python.org/cpython/rev/e9c3df45920e |
|||
| msg152937 - (view) | Author: Senthil Kumaran (orsenthil) * (Python committer) | Date: 2012年02月09日 09:57 | |
Thanks for patches. This is fixed. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:48 | admin | set | github: 50255 |
| 2012年02月09日 09:57:25 | orsenthil | set | status: open -> closed nosy: + orsenthil messages: + msg152937 resolution: fixed stage: resolved |
| 2012年02月09日 09:56:31 | python-dev | set | messages: + msg152936 |
| 2012年02月09日 09:44:53 | python-dev | set | nosy:
+ python-dev messages: + msg152935 |
| 2011年02月08日 23:06:19 | sandro.tosi | set | nosy:
+ sandro.tosi messages: + msg128198 |
| 2010年10月29日 10:07:21 | admin | set | assignee: georg.brandl -> docs@python |
| 2010年08月08日 14:36:59 | bbrazil | set | files: + socket-sendall-doc-py3k.patch |
| 2010年08月08日 14:36:39 | bbrazil | set | files:
+ socket-sendall-doc-2.7.patch versions: + Python 2.7, Python 3.3, - Python 2.6 nosy: + bbrazil messages: + msg113268 |
| 2009年09月23日 17:49:53 | thijs | set | nosy:
+ thijs |
| 2009年08月24日 08:12:55 | nicdumz | set | files:
+ socket.patch nosy: + nicdumz messages: + msg91907 keywords: + patch |
| 2009年05月12日 14:19:03 | kiilerix | create | |