Documentation
wsgiref.util.is_hop_by_hop is available inside the official documentation (https://docs.python.org/3/library/wsgiref.html#wsgiref.util.is_hop_by_hop), but
|
__all__ = [ |
|
'FileWrapper', 'guess_scheme', 'application_uri', 'request_uri', |
|
'shift_path_info', 'setup_testing_defaults', |
|
] |
does not expose the method. This leads to IDE warnings when actually using it.
Is this method intended for public usage and just missing from __all__ - or should this be considered an internal method instead?
Linked PRs
Documentation
wsgiref.util.is_hop_by_hopis available inside the official documentation (https://docs.python.org/3/library/wsgiref.html#wsgiref.util.is_hop_by_hop), butcpython/Lib/wsgiref/util.py
Lines 5 to 8 in ba8aa1f
Is this method intended for public usage and just missing from
__all__- or should this be considered an internal method instead?Linked PRs
wsgiref.util.is_hop_by_hopto__all__#111770