Kaydet (Commit) 53665e57 authored tarafından Guido van Rossum's avatar Guido van Rossum

Last minute changes for \B. AMK.

üst cf005053
...@@ -1962,8 +1962,8 @@ int re_match(regexp_t bufp, ...@@ -1962,8 +1962,8 @@ int re_match(regexp_t bufp,
if (text == textstart || text == textend) if (text == textstart || text == textend)
goto fail; goto fail;
if (!((SYNTAX(text[-1]) & Sword) ^ (SYNTAX(*text) & Sword))) if (!((SYNTAX(text[-1]) & Sword) ^ (SYNTAX(*text) & Sword)))
goto fail; goto continue_matching;
goto continue_matching; goto fail;
} }
case Csyntaxspec: case Csyntaxspec:
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment