mirror of
https://github.com/python/cpython.git
synced 2025-12-09 10:37:17 +00:00
Fix bug with \< (AMK).
This commit is contained in:
parent
6dc61b110f
commit
abed54ab4a
1 changed files with 1 additions and 1 deletions
|
|
@ -1884,7 +1884,7 @@ int re_match(regexp_t bufp,
|
||||||
{
|
{
|
||||||
if (text == textend)
|
if (text == textend)
|
||||||
goto fail;
|
goto fail;
|
||||||
if (SYNTAX(*text) & Sword)
|
if (!(SYNTAX(*text) & Sword))
|
||||||
goto fail;
|
goto fail;
|
||||||
if (text == textstart)
|
if (text == textstart)
|
||||||
goto continue_matching;
|
goto continue_matching;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue