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.

classification
Title: Minor error "How To Sockets"
Type: Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Daniel.Fisher, docs@python, python-dev
Priority: normal Keywords:

Created on 2014-05-26 22:01 by Daniel.Fisher, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg219182 - (view) Author: Daniel Fisher (Daniel.Fisher) Date: 2014-05-26 22:01
There is a minor error in the documentation page "https://docs.python.org/2/howto/sockets.html"

Line 31 of the sample program of the program listed under "Using a Socket" reads chucks.append(chunk). It should read chunks.append(chunk). Without this minor correction, the sample program will not run.
msg219184 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-05-26 22:11
New changeset dc2a123d538a by Benjamin Peterson in branch '2.7':
fix typo in variable name (closes #21586)
http://hg.python.org/cpython/rev/dc2a123d538a

New changeset 62eb4828fdf7 by Benjamin Peterson in branch '3.4':
fix typo in variable name (closes #21586)
http://hg.python.org/cpython/rev/62eb4828fdf7

New changeset 487e8e071551 by Benjamin Peterson in branch 'default':
merge 3.4 (#21586)
http://hg.python.org/cpython/rev/487e8e071551
History
Date User Action Args
2022-04-11 14:58:04adminsetgithub: 65785
2014-05-26 22:11:21python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg219184

resolution: fixed
stage: resolved
2014-05-26 22:01:46Daniel.Fishercreate