Overview
| Comment: | [build] fix regex |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | build |
| Files: | files | file ages | folders |
| SHA3-256: |
dc5d49687130fdc52f1b96542c027cd9 |
| User & Date: | olr on 2020-12-13 09:50:13 |
| Other Links: | manifest | tags |
Context
|
2020-12-13
| ||
| 12:51 | [fr] ajustements check-in: 9da7738892 user: olr tags: trunk, fr | |
| 09:50 | [build] fix regex check-in: dc5d496871 user: olr tags: trunk, build | |
|
2020-12-12
| ||
| 16:54 | [core][build][fr][misc] disambiguator: merge functions select() and exclude() in one function -> select() check-in: cbfed9773f user: olr tags: trunk, fr, core, build, misc | |
Changes
Modified compile_rules.py from [b5b4c7e6b9] to [0ff606069c].
| ︙ | |||
62 63 64 65 66 67 68 | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | - + |
s = re.sub(r"\brealstart\(\)", 'before("^ *$")', s)
s = re.sub(r"\bstart0\(\)", 'before0("^ *$|, *$")', s)
s = re.sub(r"\brealstart0\(\)", 'before0("^ *$")', s)
s = re.sub(r"\bend\(\)", 'after("^ *$|^,")', s)
s = re.sub(r"\brealend\(\)", 'after("^ *$")', s)
s = re.sub(r"\bend0\(\)", 'after0("^ *$|^,")', s)
s = re.sub(r"\brealend0\(\)", 'after0("^ *$")', s)
|
| ︙ |