Allow using the re module in tab title templates

Fix #5639
This commit is contained in:
Kovid Goyal 2022-11-01 22:25:58 +05:30
parent 0b3228ab16
commit e309e54002
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -2,6 +2,7 @@
# License: GPL v3 Copyright: 2018, Kovid Goyal <kovid at kovidgoyal.net>
import os
import re
from functools import lru_cache, partial, wraps
from string import Formatter as StringFormatter
from typing import (
@ -189,7 +190,7 @@ class TabAccessor:
safe_builtins = {
'max': max, 'min': min, 'str': str, 'repr': repr, 'abs': abs, 'len': len,
'max': max, 'min': min, 'str': str, 'repr': repr, 'abs': abs, 'len': len, 're': re,
}