Merge pull request #1222 from pappacena/patch-1

Author: pappacena

Reviewer: glyph

Fixes: ticket:9769

Add BrowserLikePolicyForHTTPS to __all__
This commit is contained in:
Glyph 2020-03-03 21:54:51 -08:00 committed by GitHub
commit d5200f715e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -2310,6 +2310,7 @@ def readBody(response):
__all__ = [
'Agent',
'BrowserLikePolicyForHTTPS',
'BrowserLikeRedirectAgent',
'ContentDecoderAgent',
'CookieAgent',

View File

@ -0,0 +1 @@
twisted.web.client.BrowserLikePolicyForHTTPS is now listed in __all__, since it's a user-facing class that anyone could import and extend.