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

Fix bug with \< (AMK).

üst 6dc61b11
......@@ -1884,7 +1884,7 @@ int re_match(regexp_t bufp,
{
if (text == textend)
goto fail;
if (SYNTAX(*text) & Sword)
if (!(SYNTAX(*text) & Sword))
goto fail;
if (text == textstart)
goto continue_matching;
......
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