We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bd6001 commit 578fb9fCopy full SHA for 578fb9f
1 file changed
textile/regex_strings.py
@@ -19,7 +19,7 @@
19
except ImportError:
20
from sys import maxunicode
21
upper_re_s = "".join(
22
- [unichr(c) for c in range(maxunicode) if unichr(c).isupper()]
+ [chr(c) for c in range(maxunicode) if chr(c).isupper()]
23
)
24
regex_snippets = {
25
'acr': r'{0}0-9'.format(upper_re_s),
0 commit comments