Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f73548 commit f9925d8Copy full SHA for f9925d8
1 file changed
Modules/_sre.c
@@ -92,8 +92,6 @@ static const char copyright[] =
92
((ch) < 128 && Py_ISSPACE(ch))
93
#define SRE_IS_LINEBREAK(ch)\
94
((ch) == '\n')
95
-#define SRE_IS_ALNUM(ch)\
96
- ((ch) < 128 && Py_ISALNUM(ch))
97
#define SRE_IS_WORD(ch)\
98
((ch) < 128 && (Py_ISALNUM(ch) || (ch) == '_'))
99
0 commit comments