summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2022-04-05 14:21:03 (GMT)
committerGitHub <noreply@github.com>2022-04-05 14:21:03 (GMT)
commitcfb849a326e52a4edc577112ebf60e1d9d0d7fdb (patch)
tree275214ff4cbeb981b7f579f3c9f953e260ac11a7 /Lib
parenta7551247e7cb7010fb4735281f1afa4abeb8a9cc (diff)
downloadcpython-cfb849a326e52a4edc577112ebf60e1d9d0d7fdb.zip
cpython-cfb849a326e52a4edc577112ebf60e1d9d0d7fdb.tar.gz
cpython-cfb849a326e52a4edc577112ebf60e1d9d0d7fdb.tar.bz2
bpo-47088: Add typing.LiteralString (PEP 675) (GH-32064)
Co-authored-by: Nick Pope <nick@nickpope.me.uk>
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_typing.py56
-rw-r--r--Lib/typing.py31
2 files changed, 85 insertions, 2 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py
index 041b6ad..e09f8aa 100644
--- a/Lib/test/test_typing.py
+++ b/Lib/test/test_typing.py
@@ -27,7 +27,7 @@ from typing import NamedTuple, TypedDict
from typing import IO, TextIO, BinaryIO
from typing import Pattern, Match
from typing import Annotated, ForwardRef
-from typing import Self
+from typing import Self, LiteralString
from typing import TypeAlias
from typing import ParamSpec, Concatenate, ParamSpecArgs, ParamSpecKwargs
from typing import TypeGuard
@@ -265,6 +265,60 @@ class SelfTests(BaseTestCase):
self.assertEqual(get_args(alias_3), (Self,))
+class LiteralStringTests(BaseTestCase):
+ def test_equality(self):
+ self.assertEqual(LiteralString, LiteralString)
+ self.assertIs(LiteralString, LiteralString)
+ self.assertNotEqual(LiteralString, None)
+
+ def test_basics(self):
+ class Foo:
+ def bar(self) -> LiteralString: ...
+ class FooStr:
+ def bar(self) -> 'LiteralString': ...
+ class FooStrTyping:
+ def bar(self) -> 'typing.LiteralString': ...
+
+ for target in [Foo, FooStr, FooStrTyping]:
+ with self.subTest(target=target):
+ self.assertEqual(gth(target.bar), {'return': LiteralString})
+ self.assertIs(get_origin(LiteralString), None)
+
+ def test_repr(self):
+ self.assertEqual(repr(LiteralString), 'typing.LiteralString')
+
+ def test_cannot_subscript(self):
+ with self.assertRaises(TypeError):
+ LiteralString[int]
+
+ def test_cannot_subclass(self):
+ with self.assertRaises(TypeError):
+ class C(type(LiteralString)):
+ pass
+ with self.assertRaises(TypeError):
+ class C(LiteralString):
+ pass
+
+ def test_cannot_init(self):
+ with self.assertRaises(TypeError):
+ LiteralString()
+ with self.assertRaises(TypeError):
+ type(LiteralString)()
+
+ def test_no_isinstance(self):
+ with self.assertRaises(TypeError):
+ isinstance(1, LiteralString)
+ with self.assertRaises(TypeError):
+ issubclass(int, LiteralString)
+
+ def test_alias(self):
+ alias_1 = Tuple[LiteralString, LiteralString]
+ alias_2 = List[LiteralString]
+ alias_3 = ClassVar[LiteralString]
+ self.assertEqual(get_args(alias_1), (LiteralString, LiteralString))
+ self.assertEqual(get_args(alias_2), (LiteralString,))
+ self.assertEqual(get_args(alias_3), (LiteralString,))
+
class TypeVarTests(BaseTestCase):
def test_basic_plain(self):
T = TypeVar('T')
diff --git a/Lib/typing.py b/Lib/typing.py
index 4636798..26c6b8c 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -126,6 +126,7 @@ __all__ = [
'get_origin',
'get_type_hints',
'is_typeddict',
+ 'LiteralString',
'Never',
'NewType',
'no_type_check',
@@ -180,7 +181,7 @@ def _type_check(arg, msg, is_argument=True, module=None, *, allow_special_forms=
if (isinstance(arg, _GenericAlias) and
arg.__origin__ in invalid_generic_forms):
raise TypeError(f"{arg} is not valid as type argument")
- if arg in (Any, NoReturn, Never, Self, TypeAlias):
+ if arg in (Any, LiteralString, NoReturn, Never, Self, TypeAlias):
return arg
if allow_special_forms and arg in (ClassVar, Final):
return arg
@@ -524,6 +525,34 @@ def Self(self, parameters):
@_SpecialForm
+def LiteralString(self, parameters):
+ """Represents an arbitrary literal string.
+
+ Example::
+
+ from typing import LiteralString
+
+ def run_query(sql: LiteralString) -> ...
+ ...
+
+ def caller(arbitrary_string: str, literal_string: LiteralString) -> None:
+ run_query("SELECT * FROM students") # ok
+ run_query(literal_string) # ok
+ run_query("SELECT * FROM " + literal_string) # ok
+ run_query(arbitrary_string) # type checker error
+ run_query( # type checker error
+ f"SELECT * FROM students WHERE name = {arbitrary_string}"
+ )
+
+ Only string literals and other LiteralStrings are compatible
+ with LiteralString. This provides a tool to help prevent
+ security issues such as SQL injection.
+
+ """
+ raise TypeError(f"{self} is not subscriptable")
+
+
+@_SpecialForm
def ClassVar(self, parameters):
"""Special type construct to mark class variables.