A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://mail.python.org/pipermail/python-dev/2000-August/009031.html below:

[Python-Dev] one last SRE headache

[Python-Dev] one last SRE headacheKa-Ping Yee ping@lfw.org
Thu, 31 Aug 2000 16:04:26 -0500 (CDT)
On Thu, 31 Aug 2000, Fredrik Lundh wrote:
> I had to add one rule:
> 
>     If it starts with a zero, it's always an octal number.
>     Up to two more octal digits are accepted after the
>     leading zero.

Fewer rules are better.  Let's not arbitrarily rule out
the possibility of more than 100 groups.

The octal escapes are a different kind of animal than the
backreferences: for a backreference, there is *actually*
a backslash followed by a number in the regular expression;
but we already have a reasonable way to put funny characters
into regular expressions.

That is, i propose *removing* the translation of octal
escapes from the regular expression engine.  That's the
job of the string literal:

    r'\011'    is a backreference to group 11

    '\\011'    is a backreference to group 11

    '\011'     is a tab character

This makes automatic construction of regular expressions
a tractable problem.  We don't want to introduce so many
exceptional cases that an attempt to automatically build
regular expressions will turn into a nightmare of special
cases.
    

-- ?!ng




RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4