mirror of
https://github.com/boostorg/mpl.git
synced 2026-08-03 20:24:43 +02:00
ecb4d2a89fc41e65a13bcc0c7a7aa2f57b83f35b
placeholders to avoid unexpected substitutions
(e.g.) with i = 110:
line = re.sub(r'20', re.escape(str(i+10)), line.rstrip())
20 -> 110
line = re.sub(r'11', re.escape(str(i + 1)), line.rstrip())
110 -> 1010
line = re.sub(r'10(?![0-9])', re.escape(str(i)), line.rstrip())
1100 -> 10100
Description
Languages
C++
99.1%
Python
0.8%