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: problems in library/base64.rst
Type: Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: docs@python, matrixise, python-dev, serhiy.storchaka, xwhhsprings
Priority: normal Keywords:

Created on 2015-11-23 13:29 by xwhhsprings, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (8)
msg255155 - (view) Author: hiroaki itoh (xwhhsprings) Date: 2015-11-23 13:29
* default of ignorechars for a85decode
    b' tnrv' should be b' \t\n\r\v'
* explanation of newline for a85encode
    "newline('n')" should be "newline('\n')"
msg255156 - (view) Author: hiroaki itoh (xwhhsprings) Date: 2015-11-23 13:36
maybe this is Sphinx bug.
rst has no problem.
msg255158 - (view) Author: Stéphane Wirtel (matrixise) * (Python committer) Date: 2015-11-23 13:51
Who can explain the problem ? I am ignorant about this issue.
msg255162 - (view) Author: hiroaki itoh (xwhhsprings) Date: 2015-11-23 14:11
Should be escape by '\\t\\b...' in rst?
msg255163 - (view) Author: hiroaki itoh (xwhhsprings) Date: 2015-11-23 14:15
escape*d*
msg255166 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-11-23 14:46
New changeset a33d76465a18 by Serhiy Storchaka in branch '3.4':
Issue #25706: Fixed markup in the documentation.
https://hg.python.org/cpython/rev/a33d76465a18

New changeset f4918e98d085 by Serhiy Storchaka in branch '3.5':
Issue #25706: Fixed markup in the documentation.
https://hg.python.org/cpython/rev/f4918e98d085

New changeset ebec1a98ab81 by Serhiy Storchaka in branch 'default':
Issue #25706: Fixed markup in the documentation.
https://hg.python.org/cpython/rev/ebec1a98ab81
msg255170 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-11-23 14:54
Thank you for your report hiroaki itoh. Fixed yet one error in Doc/library/stdtypes.rst.

Stéphane, the backslash hes special meaning in rst files if not escaped.
msg255176 - (view) Author: Stéphane Wirtel (matrixise) * (Python committer) Date: 2015-11-23 15:24
Thanks for your explanation, Serhiy.

Now, I know how to fix this kind of issues.

On 11/23, Serhiy Storchaka wrote:
> 
> Serhiy Storchaka added the comment:
> 
> Thank you for your report hiroaki itoh. Fixed yet one error in Doc/library/stdtypes.rst.
> 
> Stéphane, the backslash hes special meaning in rst files if not escaped.
History
Date User Action Args
2022-04-11 14:58:24adminsetgithub: 69892
2015-11-23 15:24:50matrixisesetmessages: + msg255176
2015-11-23 14:54:09serhiy.storchakasetstatus: open -> closed
resolution: fixed
messages: + msg255170

stage: resolved
2015-11-23 14:46:15python-devsetnosy: + python-dev
messages: + msg255166
2015-11-23 14:15:15xwhhspringssetmessages: + msg255163
2015-11-23 14:11:55xwhhspringssetmessages: + msg255162
2015-11-23 13:51:44matrixisesetnosy: + matrixise
messages: + msg255158
2015-11-23 13:49:36serhiy.storchakasetassignee: docs@python -> serhiy.storchaka

nosy: + serhiy.storchaka
2015-11-23 13:36:31xwhhspringssetmessages: + msg255156
2015-11-23 13:33:15xwhhspringssetversions: + Python 3.6
2015-11-23 13:32:50xwhhspringssetversions: + Python 3.5
2015-11-23 13:29:19xwhhspringscreate