[Merged!] [MERGE][1.6] Update repo description strings

Vincent Ladeuil v.ladeuil+lp at free.fr
Sun Aug 17 16:19:05 BST 2008


>>>>> "john" == John Arbash Meinel <john at arbash-meinel.com> writes:

<snip/>

    john> So, it seems that Python's regex engine doesn't support "\>" and "\<" which
    john> are: match at the end of a word, and match at the beginning of a word,
    john> respectively.

    john> However, it does have '\b' which is "match at a word boundary".

In most cases you get a good approximation with:

\< == \W\b
\> == \b\W


   Vincent




More information about the bazaar mailing list