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 53f6b07 commit 7a57d49Copy full SHA for 7a57d49
cylc/flow/unicode_rules.py
@@ -27,7 +27,7 @@
27
from cylc.flow.task_state import TASK_STATUSES_ORDERED
28
29
ENGLISH_REGEX_MAP = {
30
- r'\w': 'alphanumeric',
+ r'\w': r'alphanumeric (regex word characters - ``\w``)',
31
r'a-zA-Z0-9': 'latin letters and numbers',
32
r'\d': 'numbers',
33
r'\-': '``-``',
@@ -45,7 +45,7 @@ def regex_chars_to_text(chars):
45
>>> regex_chars_to_text([r'\-', r'\.', r'\/'])
46
['``-``', '``.``', '``/``']
47
>>> regex_chars_to_text([r'\w'])
48
- ['alphanumeric']
+ ['alphanumeric (regex word characters - ``\\w``)']
49
>>> regex_chars_to_text(['not_in_map'])
50
['``not_in_map``']
51
0 commit comments