Tune translation of howto - regex "non-capturing-and-named-groups"
lexxai opened this issue · 1 comments
lexxai commented
https://docs.python.org/uk/3/howto/regex.html#non-capturing-and-named-groups
також можна записати як \b(?P <word> \w+)\s+(?P=слово)\b:
Краще буде:
також можна записати як \b(?P<word>\w+)\s+(?P=word)\b:
kazanzhy commented
Updated in Transifex