From 629c448bdcbd7ca9f5d530c0ef10fa3bcd7ccbff Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 27 Oct 2022 07:18:16 +0200 Subject: all: convert "re" to "regex" --- pygments/lexers/_lua_builtins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pygments/lexers/_lua_builtins.py') diff --git a/pygments/lexers/_lua_builtins.py b/pygments/lexers/_lua_builtins.py index a31f6b3b..1d63c4c0 100644 --- a/pygments/lexers/_lua_builtins.py +++ b/pygments/lexers/_lua_builtins.py @@ -175,9 +175,9 @@ MODULES = {'basic': ('_G', 'utf8.offset')} if __name__ == '__main__': # pragma: no cover - import re from urllib.request import urlopen import pprint + import regex as re # you can't generally find out what module a function belongs to if you # have only its name. Because of this, here are some callback functions -- cgit v1.2.1