From: Stefan <96178532+stefan6419846@users.noreply.github.com> Date: Wed, 8 Nov 2023 15:29:47 +0000 (+0100) Subject: gh-111768: Add `wsgiref.util.is_hop_by_hop` to `__all__` (#111770) X-Git-Tag: v3.13.0a2~156 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f88caab467eb57cfe293cdf9fb7cce29b24fda7f;p=thirdparty%2FPython%2Fcpython.git gh-111768: Add `wsgiref.util.is_hop_by_hop` to `__all__` (#111770) --- diff --git a/Lib/wsgiref/util.py b/Lib/wsgiref/util.py index cbbe094cba16..63b923317373 100644 --- a/Lib/wsgiref/util.py +++ b/Lib/wsgiref/util.py @@ -4,7 +4,7 @@ import posixpath __all__ = [ 'FileWrapper', 'guess_scheme', 'application_uri', 'request_uri', - 'shift_path_info', 'setup_testing_defaults', + 'shift_path_info', 'setup_testing_defaults', 'is_hop_by_hop', ] 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 000000000000..501cfa3920a0 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst @@ -0,0 +1 @@ +:func:`wsgiref.util.is_hop_by_hop` is now exposed correctly in ``__all__``.