mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 03:56:52 -04:00
11 lines
252 B
Python
11 lines
252 B
Python
|
|
import re
|
||
|
|
|
||
|
|
re_test = re.compile(r"^(?P<year>\d{4}) (?P<day>\d) \w\s{,3}$")
|
||
|
|
# ^ @string.regexp
|
||
|
|
re_test = re.compile(
|
||
|
|
r"^(?P<year>\d{4}) "
|
||
|
|
# ^ @string.regexp
|
||
|
|
r"(?P<day>\d) \w\s{,3}"
|
||
|
|
# ^ @string.regexp
|
||
|
|
)
|