mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
_sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090)
This commit is contained in:
parent
8f735485ac
commit
f9925d86c9
1 changed files with 0 additions and 2 deletions
|
@ -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) == '_'))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue