From b522f04ebef0f4bf51f03d315f18bda434b7cad8 Mon Sep 17 00:00:00 2001 From: stefan6419846 <96178532+stefan6419846@users.noreply.github.com> Date: Mon, 6 Nov 2023 12:00:46 +0100 Subject: [PATCH 1/3] gh-111768: add `wsgiref.util.is_hop_by_hop` to `__all__` --- Lib/wsgiref/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/wsgiref/util.py b/Lib/wsgiref/util.py index cbbe094cba1624..63b923317373f5 100644 --- a/Lib/wsgiref/util.py +++ b/Lib/wsgiref/util.py @@ -4,7 +4,7 @@ __all__ = [ 'FileWrapper', 'guess_scheme', 'application_uri', 'request_uri', - 'shift_path_info', 'setup_testing_defaults', + 'shift_path_info', 'setup_testing_defaults', 'is_hop_by_hop', ] From 9509f4dfc39f3c018a97bde1675bb8fe0ecd99e2 Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" <43283697+blurb-it[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 07:42:54 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst diff --git a/Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst b/Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst new file mode 100644 index 00000000000000..cd09b27221f790 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst @@ -0,0 +1 @@ +:meth:`wsgiref.util.is_hop_by_hop` is now exposed correctly in ``__all__``. From 88d498cca9ab84dbde83e25baf4101c47a0cd235 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Wed, 8 Nov 2023 06:23:13 -0800 Subject: [PATCH 3/3] Update Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst --- .../next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst b/Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst index cd09b27221f790..501cfa3920a0bf 100644 --- a/Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst +++ b/Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst @@ -1 +1 @@ -:meth:`wsgiref.util.is_hop_by_hop` is now exposed correctly in ``__all__``. +:func:`wsgiref.util.is_hop_by_hop` is now exposed correctly in ``__all__``.