On Mon, Mar 02, 2009 at 12:25:28PM +0000, Guido Trotter wrote:
> On Mon, Mar 2, 2009 at 11:38 AM, Iustin Pop <[email protected]> wrote:
> >
> > This patch restricts the use of spaces in tags, as this does not allow
> > nice exporting of tags to environment in hooks. One can use underscores
> > or dashes instead of spaces.
>
> Should we add underscores to the regexp, then?
They are (pydoc re):
\w Matches any alphanumeric character; equivalent to [a-zA-Z0-9_].
With LOCALE, it will match the set [0-9_] plus characters defined
as letters for the current locale.
iustin