From 6b29dca1284619cbc2a2ca79555c4a67eff08c1b Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Sun, 20 Feb 2022 01:51:59 -0800 Subject: [PATCH] cgitb: add __UNDEF__ (#7322) --- stdlib/cgitb.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/cgitb.pyi b/stdlib/cgitb.pyi index 3a551e310..fb9d69161 100644 --- a/stdlib/cgitb.pyi +++ b/stdlib/cgitb.pyi @@ -4,6 +4,8 @@ from typing import IO, Any, Callable, Optional _ExcInfo = tuple[Optional[type[BaseException]], Optional[BaseException], Optional[TracebackType]] +__UNDEF__: object # undocumented sentinel + def reset() -> str: ... # undocumented def small(text: str) -> str: ... # undocumented def strong(text: str) -> str: ... # undocumented