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: No docs for module 'IN'
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: RSokolov, georg.brandl
Priority: normal Keywords:

Created on 2009-10-05 06:11 by RSokolov, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg93576 - (view) Author: Roman Sokolov (RSokolov) Date: 2009-10-05 06:11
Python 2.6.3 (r263:75183, Oct  2 2009, 11:22:08)
>>> import IN
>>> help(IN)

-- contain following lines:
"MODULE DOCS
    http://docs.python.org/library/IN"
, but server returns 404 error:
"The requested URL /library/IN was not found on this server."
and no docs found in source distribution:
$ cat ~/terrarium/sources/py26st/Doc/library/IN.rst
cat: /home/roma/terrarium/sources/py26st/Doc/library/IN.rst: No such 
file or directory
msg94353 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-10-22 15:18
That's the case for all undocumented modules (there are some like IN,
that only contain constants; they're also going away in Py3k).  However,
pydoc can't know which modules are documented, so I'm going to close
this as "won't fix".
History
Date User Action Args
2022-04-11 14:56:53adminsetgithub: 51311
2009-10-22 15:18:46georg.brandlsetstatus: open -> closed
resolution: wont fix
messages: + msg94353
2009-10-05 06:11:26RSokolovcreate