Commit f9925d86 authored by Sergey Fedoseev's avatar Sergey Fedoseev Committed by Victor Stinner

_sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090)

parent 8f735485
......@@ -92,8 +92,6 @@ static const char copyright[] =
((ch) < 128 && Py_ISSPACE(ch))
#define SRE_IS_LINEBREAK(ch)\
((ch) == '\n')
#define SRE_IS_ALNUM(ch)\
((ch) < 128 && Py_ISALNUM(ch))
#define SRE_IS_WORD(ch)\
((ch) < 128 && (Py_ISALNUM(ch) || (ch) == '_'))
......
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