Skip to content
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cylc/flow/unicode_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from cylc.flow.task_state import TASK_STATUSES_ORDERED

ENGLISH_REGEX_MAP = {
r'\w': 'alphanumeric',
r'\w': 'alphanumeric (regex word characters - ``\w``)',
r'a-zA-Z0-9': 'latin letters and numbers',
r'\d': 'numbers',
r'\-': '``-``',
Expand All @@ -45,7 +45,7 @@ def regex_chars_to_text(chars):
>>> regex_chars_to_text([r'\-', r'\.', r'\/'])
['``-``', '``.``', '``/``']
>>> regex_chars_to_text([r'\w'])
['alphanumeric']
['alphanumeric (regex word characters - ``\w``)']
Comment thread
oliver-sanders marked this conversation as resolved.
Outdated
>>> regex_chars_to_text(['not_in_map'])
['``not_in_map``']

Expand Down
Loading