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: re documentation: typo "escapes consist of"
Type: Stage: resolved
Components: Documentation Versions: Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, jwilk, ned.deily, python-dev
Priority: normal Keywords:

Created on 2016-06-15 21:38 by jwilk, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg268630 - (view) Author: Jakub Wilk (jwilk) Date: 2016-06-15 21:38
Documentation for the re module <https://docs.python.org/3/library/re.html> reads:

    Unknown escapes consist of '\' and ASCII letter now raise a deprecation warning ...

This should be:

    ... escapes consisting of ...
msg268631 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-06-15 22:10
New changeset 2a7dd5414485 by Ned Deily in branch '3.5':
Issue #27327: fix doc typo, noted by Jakub Wilk.
https://hg.python.org/cpython/rev/2a7dd5414485

New changeset b3f97ed4a904 by Ned Deily in branch 'default':
Issue #27327: null merge from 3.5
https://hg.python.org/cpython/rev/b3f97ed4a904
msg268632 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2016-06-15 22:11
Thanks for the report!
History
Date User Action Args
2022-04-11 14:58:32adminsetgithub: 71514
2016-06-15 22:11:00ned.deilysetstatus: open -> closed

nosy: + ned.deily
messages: + msg268632

resolution: fixed
stage: resolved
2016-06-15 22:10:26python-devsetnosy: + python-dev
messages: + msg268631
2016-06-15 21:38:39jwilkcreate