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: WARNING: Inline literal start-string without end-string.
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, matrixise, orsenthil
Priority: normal Keywords: patch

Created on 2014-04-14 18:16 by matrixise, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue21219_1.patch matrixise, 2014-04-14 18:17 review
Messages (4)
msg216149 - (view) Author: Stéphane Wirtel (matrixise) * (Python committer) Date: 2014-04-14 18:16
When I build the documentation, I get a warning about the NEWS file. Just add a new patch for this warning.


> (sphinx) make html
sphinx-build -b html -d build/doctrees -D latex_paper_size=  . build/html
Making output directory...
Running Sphinx v1.2.2
loading pickled environment... not yet created
building [html]: targets for 455 source files that are out of date
updating environment: 455 added, 0 changed, 0 removed
reading sources... [100%] whatsnew/index
../../Misc/NEWS:44: WARNING: Inline literal start-string without end-string.
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
preparing documents... done
msg216150 - (view) Author: Stéphane Wirtel (matrixise) * (Python committer) Date: 2014-04-14 18:17
Here is the patch for this bug.
msg216154 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2014-04-14 18:22
Oops did not notice. Thanks for catching.
msg216162 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2014-04-14 18:35
Fixed:
3.5 a85606b6de32
3.4 fb5516cbc522
History
Date User Action Args
2022-04-11 14:58:01adminsetgithub: 65418
2014-04-14 18:35:02orsenthilsetstatus: open -> closed
type: compile error -> behavior
messages: + msg216162

resolution: fixed
stage: resolved
2014-04-14 18:22:49orsenthilsetmessages: + msg216154
2014-04-14 18:19:31zach.waresetnosy: + orsenthil
2014-04-14 18:17:02matrixisesetfiles: + issue21219_1.patch
keywords: + patch
messages: + msg216150
2014-04-14 18:16:10matrixisecreate