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: Improve re match objects display
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: Claudiu.Popa, docs@python, eric.araujo, ezio.melotti, python-dev
Priority: normal Keywords: patch

Created on 2013-11-18 09:35 by Claudiu.Popa, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
re_doc.patch Claudiu.Popa, 2013-11-18 09:35 review
Messages (4)
msg203268 - (view) Author: PCManticore (Claudiu.Popa) * (Python triager) Date: 2013-11-18 09:35
When issue17087 was accepted, the documentation wasn't changed to reflect the new changes. The attached patch fixes this, replacing the old <_sre.Match object ...> with the deterministic repr of the match object.
msg203872 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2013-11-22 20:56
Good catch, thanks!
msg204070 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-11-23 18:27
New changeset bbfc559f7190 by Ezio Melotti in branch 'default':
#19639: update the repr of the match objects in the docs.  Patch by Claudiu Popa.
http://hg.python.org/cpython/rev/bbfc559f7190
msg204071 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-11-23 18:28
Fixed, thanks for the report and the patch!
History
Date User Action Args
2022-04-11 14:57:53adminsetgithub: 63838
2013-11-23 18:28:31ezio.melottisetstatus: open -> closed
resolution: fixed
messages: + msg204071

stage: patch review -> resolved
2013-11-23 18:27:43python-devsetnosy: + python-dev
messages: + msg204070
2013-11-22 20:56:24eric.araujosetnosy: + eric.araujo
messages: + msg203872
2013-11-18 09:50:55ezio.melottisetassignee: docs@python -> ezio.melotti

type: enhancement
nosy: + ezio.melotti
stage: patch review
2013-11-18 09:35:16Claudiu.Popacreate