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: Get rid of MatchObject in regex HOWTO
Type: enhancement Stage: resolved
Components: Documentation, Regular Expressions Versions: Python 3.2, Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: akuchling, asvetlov, docs@python, ezio.melotti, mrabarnett, pitrou, python-dev, serhiy.storchaka
Priority: normal Keywords:

Created on 2012-12-24 08:35 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (8)
msg178036 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2012-12-24 08:35
MatchObject is not defined anywhere and is not used except HOWTO (see issue6538).
msg178144 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-25 16:16
New changeset b11f98872c0f by Ezio Melotti in branch '2.7':
#16760: use ref:`match-objects` instead of :class:`MatchObject`.
http://hg.python.org/cpython/rev/b11f98872c0f

New changeset 7c4ef8faeb4a by Ezio Melotti in branch '3.2':
#16760: use ref:`match-objects` instead of :class:`MatchObject`.
http://hg.python.org/cpython/rev/7c4ef8faeb4a

New changeset 4ba1e90e0119 by Ezio Melotti in branch '3.3':
#16760: merge with 3.2.
http://hg.python.org/cpython/rev/4ba1e90e0119

New changeset f2222684dd2d by Ezio Melotti in branch 'default':
#16760: merge with 3.3.
http://hg.python.org/cpython/rev/f2222684dd2d
msg178146 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-12-25 16:21
Fixed, thanks for the report!
msg178149 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2012-12-25 16:44
We need to rename MatchObject to match object than (see #16443)
msg178150 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-25 16:49
New changeset 3bee420d400f by Andrew Svetlov in branch '3.2':
rename MathcObject to match object in doctrings for re module (#16760)
http://hg.python.org/cpython/rev/3bee420d400f

New changeset 73b24ee09e0a by Andrew Svetlov in branch '3.3':
rename MathcObject to match object in doctrings for re module (#16760)
http://hg.python.org/cpython/rev/73b24ee09e0a

New changeset 8ebbab768e1b by Andrew Svetlov in branch 'default':
rename MathcObject to match object in doctrings for re module (#16760)
http://hg.python.org/cpython/rev/8ebbab768e1b
msg178151 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-25 16:50
New changeset 6ca8f965fd65 by Andrew Svetlov in branch '2.7':
rename MathcObject to match object in doctrings for re module (#16760)
http://hg.python.org/cpython/rev/6ca8f965fd65
msg178153 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2012-12-25 16:53
Done
msg178154 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-12-25 16:54
Thanks!
History
Date User Action Args
2022-04-11 14:57:39adminsetgithub: 60964
2012-12-25 16:54:22ezio.melottisetmessages: + msg178154
2012-12-25 16:53:54asvetlovsetmessages: + msg178153
2012-12-25 16:50:14python-devsetmessages: + msg178151
2012-12-25 16:49:35python-devsetmessages: + msg178150
2012-12-25 16:44:51asvetlovsetmessages: + msg178149
2012-12-25 16:21:01ezio.melottisetstatus: open -> closed
messages: + msg178146

assignee: docs@python -> ezio.melotti
resolution: fixed
stage: resolved
2012-12-25 16:16:56python-devsetnosy: + python-dev
messages: + msg178144
2012-12-24 08:38:54serhiy.storchakasetnosy: + akuchling
2012-12-24 08:35:55serhiy.storchakacreate