From abfb72e1067a6be20db2073a0d74177b56c5eebe Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Sat, 18 May 2024 02:53:26 -0700 Subject: [PATCH] wsgiref: update __all__ for py313 (#11940) GH-111770 --- stdlib/wsgiref/util.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/wsgiref/util.pyi b/stdlib/wsgiref/util.pyi index 962fac2c5..3966e17b0 100644 --- a/stdlib/wsgiref/util.pyi +++ b/stdlib/wsgiref/util.pyi @@ -4,6 +4,8 @@ from collections.abc import Callable from typing import IO, Any __all__ = ["FileWrapper", "guess_scheme", "application_uri", "request_uri", "shift_path_info", "setup_testing_defaults"] +if sys.version_info >= (3, 13): + __all__ += ["is_hop_by_hop"] class FileWrapper: filelike: IO[bytes]