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 py.user
Recipients ezio.melotti, mrabarnett, py.user
Date 2012-03-09.06:11:13
SpamBayes Score 0.057868473
Marked as misclassified No
Message-id <1331273474.34.0.161446399383.issue14237@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import re
>>> re.search(r'\Ac\Z', 'c')
<_sre.SRE_Match object at 0xb74cff38>
>>> re.search(r'[\A]c[\Z]', 'c')
>>> re.purge()
>>> re.search(r'[\A]c[\Z]', 'c', re.DEBUG)
in 
  at at_beginning_string
literal 99 
in 
  at at_end_string
>>>
History
Date User Action Args
2012-03-09 06:11:14py.usersetrecipients: + py.user, ezio.melotti, mrabarnett
2012-03-09 06:11:14py.usersetmessageid: <1331273474.34.0.161446399383.issue14237@psf.upfronthosting.co.za>
2012-03-09 06:11:13py.userlinkissue14237 messages
2012-03-09 06:11:13py.usercreate