]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-111768: Add `wsgiref.util.is_hop_by_hop` to `__all__` (#111770)
authorStefan <96178532+stefan6419846@users.noreply.github.com>
Wed, 8 Nov 2023 15:29:47 +0000 (16:29 +0100)
committerGitHub <noreply@github.com>
Wed, 8 Nov 2023 15:29:47 +0000 (15:29 +0000)
Lib/wsgiref/util.py
Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst [new file with mode: 0644]

index cbbe094cba1624c89e24acdd43bd9ae619f09fc8..63b923317373f5d405ddaebbb035f2df85450b8f 100644 (file)
@@ -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 (file)
index 0000000..501cfa3
--- /dev/null
@@ -0,0 +1 @@
+:func:`wsgiref.util.is_hop_by_hop` is now exposed correctly in ``__all__``.