mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +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)
|
||||
goto fail;
|
||||
if (SYNTAX(*text) & Sword)
|
||||
if (!(SYNTAX(*text) & Sword))
|
||||
goto fail;
|
||||
if (text == textstart)
|
||||
goto continue_matching;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue