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 docs@python, ezio.melotti, mrabarnett, py.user
Date 2012-04-01.08:11:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333267920.68.0.0890741084259.issue14461@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/py3k/library/re.html
"Note that patterns which start with positive lookbehind assertions will never match at the beginning of the string being searched; you will most likely want to use the search() function rather than the match() function:"

>>> re.match(r'(?<=^)abc', 'abc').group()
'abc'
>>> re.match(r'(?<=\b)abc', 'abc').group()
'abc'
>>> re.match(r'(?<=\A)abc', 'abc').group()
'abc'
>>> re.match(r'(?<=\A)abc', 'abc', re.DEBUG).group()
assert -1 
  at at_beginning_string 
literal 97 
literal 98 
literal 99 
'abc'
>>>


in some cases match() can match
History
Date User Action Args
2012-04-01 08:12:00py.usersetrecipients: + py.user, ezio.melotti, mrabarnett, docs@python
2012-04-01 08:12:00py.usersetmessageid: <1333267920.68.0.0890741084259.issue14461@psf.upfronthosting.co.za>
2012-04-01 08:12:00py.userlinkissue14461 messages
2012-04-01 08:11:59py.usercreate