summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan <96178532+stefan6419846@users.noreply.github.com>2023-11-08 15:29:47 (GMT)
committerGitHub <noreply@github.com>2023-11-08 15:29:47 (GMT)
commitf88caab467eb57cfe293cdf9fb7cce29b24fda7f (patch)
treed636f13537efa6e954bee8696ea1a081d1fa079b
parentfe3fd2c333ac080dba1fa64452c2f62098107731 (diff)
downloadcpython-f88caab467eb57cfe293cdf9fb7cce29b24fda7f.zip
cpython-f88caab467eb57cfe293cdf9fb7cce29b24fda7f.tar.gz
cpython-f88caab467eb57cfe293cdf9fb7cce29b24fda7f.tar.bz2
gh-111768: Add `wsgiref.util.is_hop_by_hop` to `__all__` (#111770)
-rw-r--r--Lib/wsgiref/util.py2
-rw-r--r--Misc/NEWS.d/next/Library/2023-11-08-07-42-53.gh-issue-111768.g-WpnV.rst1
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/wsgiref/util.py b/Lib/wsgiref/util.py
index cbbe094..63b9233 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 0000000..501cfa3
--- /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__``.