Skip to content

Commit f9925d8

Browse files
sir-sigurdvstinner
authored andcommitted
_sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090)
1 parent 8f73548 commit f9925d8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Modules/_sre.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ static const char copyright[] =
9292
((ch) < 128 && Py_ISSPACE(ch))
9393
#define SRE_IS_LINEBREAK(ch)\
9494
((ch) == '\n')
95-
#define SRE_IS_ALNUM(ch)\
96-
((ch) < 128 && Py_ISALNUM(ch))
9795
#define SRE_IS_WORD(ch)\
9896
((ch) < 128 && (Py_ISALNUM(ch) || (ch) == '_'))
9997

0 commit comments

Comments
 (0)