mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 19:46:58 -04:00
10 lines
252 B
Python
10 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
|
|
)
|