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: Wrong link to source code of ftplib
Type: Stage: patch review
Components: Documentation Versions: Python 3.2, Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: Reiner.Gerecke, SilentGhost, docs@python, rhettinger
Priority: normal Keywords: patch

Created on 2011-02-20 23:02 by Reiner.Gerecke, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
ftplib.rst.diff SilentGhost, 2011-02-20 23:10
Messages (3)
msg128926 - (view) Author: Reiner Gerecke (Reiner.Gerecke) Date: 2011-02-20 23:02
The link to the source code of the ftp module at the top of the documentation (http://docs.python.org/release/3.2/library/ftplib.html) points to a non-existant page.

  **Source code:** :source:`Lib/ftp.py`

It is referencing ftp.py, but needs to be ftplib.py.
msg128927 - (view) Author: SilentGhost (SilentGhost) * (Python triager) Date: 2011-02-20 23:10
here is the patch
msg128987 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2011-02-21 19:58
Thanks for the report.
Fixed in r88473 and r88474.
History
Date User Action Args
2022-04-11 14:57:13adminsetgithub: 55472
2011-02-21 19:58:59rhettingersetstatus: open -> closed

messages: + msg128987
resolution: fixed
nosy: rhettinger, SilentGhost, docs@python, Reiner.Gerecke
2011-02-21 05:50:40rhettingersetassignee: docs@python -> rhettinger

nosy: + rhettinger
2011-02-20 23:10:40SilentGhostsetfiles: + ftplib.rst.diff

nosy: + SilentGhost
messages: + msg128927

keywords: + patch
stage: patch review
2011-02-20 23:02:09Reiner.Gereckecreate