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: Small RST fix in datamodel.rst
Type: Stage:
Components: Documentation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, mgiuca
Priority: normal Keywords:

Created on 2008-09-06 13:36 by mgiuca, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
patch mgiuca, 2008-09-06 13:36
Messages (2)
msg72668 - (view) Author: Matt Giuca (mgiuca) Date: 2008-09-06 13:36
A missing blank line under the heading for __bool__ in datamodel.rst (in
Python 3.0 docs) causes the following line to appear in the output HTML.

".. index:: single: __len__() (mapping object method)"

Visible here:
http://docs.python.org/dev/3.0/reference/datamodel.html#object.__bool__

Fixed in attached patch by adding a blank line.

Commit log:
Added blank line to avoid RST source leaking into HTML output.
msg72675 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-09-06 17:43
Fixed in r66260.
History
Date User Action Args
2022-04-11 14:56:38adminsetgithub: 48043
2008-09-06 17:43:12georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg72675
2008-09-06 13:36:31mgiucacreate