add email._policybase.__all__ (#13041)

add email._policybase.__all__
This commit is contained in:
Stephen Morton
2024-11-19 03:48:55 -08:00
committed by GitHub
parent 9eb54bc710
commit 5903805b91

View File

@@ -5,6 +5,8 @@ from email.message import Message
from typing import Generic, Protocol, TypeVar, type_check_only
from typing_extensions import Self
__all__ = ["Policy", "Compat32", "compat32"]
_MessageT = TypeVar("_MessageT", bound=Message, default=Message)
@type_check_only