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 rhettinger
Recipients Kunjesh.Kaushik, fdrake, lukasz.langa, r.david.murray, rhettinger
Date 2011-01-27.22:13:02
SpamBayes Score 0.008921303
Marked as misclassified No
Message-id <1296166383.13.0.973884691091.issue11027@psf.upfronthosting.co.za>
In-reply-to
Content
Could just expand the docs to show examples of customizing behavior through monkey-patching or subclassing:

  class MyConfigParser(ConfigParser):
     SECTRE = re.compile(r'[\*(?P<header>[^]]+)\s*]'

or:

  RawConfigParser.SECTRE = re.compile(r'[\*(?P<header>[^]]+)\s*]'
History
Date User Action Args
2011-01-27 22:13:03rhettingersetrecipients: + rhettinger, fdrake, r.david.murray, lukasz.langa, Kunjesh.Kaushik
2011-01-27 22:13:03rhettingersetmessageid: <1296166383.13.0.973884691091.issue11027@psf.upfronthosting.co.za>
2011-01-27 22:13:02rhettingerlinkissue11027 messages
2011-01-27 22:13:02rhettingercreate