Skip to content

Commit

Permalink
case
Browse files Browse the repository at this point in the history
  • Loading branch information
HarryLHW committed Jul 13, 2024
1 parent 58e8cf2 commit d906a14
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Modules/_sre/sre.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ static unsigned int sre_upper_locale(unsigned int ch)

static unsigned int sre_lower_unicode(unsigned int ch)
{
if (ch == 0x0130)
return ch;
return (unsigned int) Py_UNICODE_TOLOWER(ch);
}

Expand Down

0 comments on commit d906a14

Please sign in to comment.