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 poolie
Recipients Ron.Ridley, docs@python, eric.araujo, ezio.melotti, poolie, ralph.corderoy
Date 2011-08-22.06:05:56
SpamBayes Score 1.711362e-08
Marked as misclassified No
Message-id <1313993157.96.0.936422741611.issue10713@psf.upfronthosting.co.za>
In-reply-to
Content
> Note, 366 above confirms it's never true for an empty string.  The
documentation states that \B "is just the opposite of \b" yet
re.match(r'\b', '') returns None and so does \B so \B isn't the opposite
of \b in all cases.

This is also a bit strange if you follow the Perl line of reasoning of imagining there are non-word characters outside the string.  And, indeed, in Perl, 

  "" =~ /\B/

is true.

So this patch adds some tests for \b behaviour and some docs.  I think possible \B should actually change, but that would be a bigger (perhaps impossible?) change.
History
Date User Action Args
2011-08-22 06:05:58pooliesetrecipients: + poolie, ezio.melotti, eric.araujo, ralph.corderoy, docs@python, Ron.Ridley
2011-08-22 06:05:57pooliesetmessageid: <1313993157.96.0.936422741611.issue10713@psf.upfronthosting.co.za>
2011-08-22 06:05:57poolielinkissue10713 messages
2011-08-22 06:05:57pooliecreate