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.

Author serhiy.storchaka
Recipients ezio.melotti, mrabarnett, serhiy.storchaka
Date 2017-05-18.09:17:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495099071.76.0.78537158998.issue30397@psf.upfronthosting.co.za>
In-reply-to
Content
Proposed patch adds re.Patter and re.Match types (names are conforming with the typing module) that represent the types of compiled regular expressin objects and match objects. The purpose of this is exposing the documentation of the methods of these objects in the module documentation produced by pydoc.

The patch also changes the __module__ attribute of these classes and re.error (this enhances the help and repr and increases pickle compatibility of re.error), adds docstrings for re.error and many descriptors, and fixes few other docstrings.
History
Date User Action Args
2017-05-18 09:17:51serhiy.storchakasetrecipients: + serhiy.storchaka, ezio.melotti, mrabarnett
2017-05-18 09:17:51serhiy.storchakasetmessageid: <1495099071.76.0.78537158998.issue30397@psf.upfronthosting.co.za>
2017-05-18 09:17:51serhiy.storchakalinkissue30397 messages
2017-05-18 09:17:51serhiy.storchakacreate