X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0ff718e1e2b434477bca134e6c8aa0f67c898cbc..de6f4b1f6bd3211e80bc5a5f1f88e6ef69a550aa:/blib2to3/pgen2/literals.py?ds=sidebyside diff --git a/blib2to3/pgen2/literals.py b/blib2to3/pgen2/literals.py index 93bee52..b5fe428 100644 --- a/blib2to3/pgen2/literals.py +++ b/blib2to3/pgen2/literals.py @@ -3,9 +3,12 @@ """Safely evaluate Python string literals without using eval().""" -import regex as re +import re -simple_escapes = { +from typing import Dict, Match, Text + + +simple_escapes: Dict[Text, Text] = { "a": "\a", "b": "\b", "f": "\f", @@ -19,7 +22,7 @@ simple_escapes = { } -def escape(m): +def escape(m: Match[Text]) -> Text: all, tail = m.group(0, 1) assert all.startswith("\\") esc = simple_escapes.get(tail) @@ -41,7 +44,7 @@ def escape(m): return chr(i) -def evalString(s): +def evalString(s: Text) -> Text: assert s.startswith("'") or s.startswith('"'), repr(s[:1]) q = s[0] if s[:3] == q * 3: @@ -52,7 +55,7 @@ def evalString(s): return re.sub(r"\\(\'|\"|\\|[abfnrtv]|x.{0,2}|[0-7]{1,3})", escape, s) -def test(): +def test() -> None: for i in range(256): c = chr(i) s = repr(c)