gh-111768: Add `wsgiref.util.is_hop_by_hop` to `__all__` (#111770)

This commit is contained in:
Stefan 2023-11-08 16:29:47 +01:00 committed by GitHub
parent fe3fd2c333
commit f88caab467
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View 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',
]

View File

@ -0,0 +1 @@
:func:`wsgiref.util.is_hop_by_hop` is now exposed correctly in ``__all__``.