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: https://docs.python.org/3/tutorial/introduction.html#strings Section 3.1.2 doc issue
Type: Stage: resolved
Components: Documentation Versions: Python 3.6
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Mariatta Nosy List: Mariatta, docs@python, rohit singh, wolma
Priority: normal Keywords:

Created on 2017-05-08 18:26 by rohit singh, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg293246 - (view) Author: rohit singh (rohit singh) Date: 2017-05-08 18:26
The documentation says:

>>> '"Isn\'t," she said.'
'"Isn\'t," she said.'

It should be:

>>> '"Isn\'t," she said.'
'"Isn't," she said.'
msg293341 - (view) Author: Wolfgang Maier (wolma) * Date: 2017-05-09 19:22
The section is correct as it is. Just try it in the interactive interpreter to convince yourself.
History
Date User Action Args
2022-04-11 14:58:46adminsetgithub: 74493
2017-05-09 19:30:34serhiy.storchakasetstatus: open -> closed
resolution: not a bug
stage: resolved
2017-05-09 19:22:54wolmasetnosy: + wolma
messages: + msg293341
2017-05-08 18:30:28rhettingersetassignee: docs@python -> Mariatta

nosy: + Mariatta
2017-05-08 18:26:22rohit singhcreate