Changeset 851173b in mod_gnutls
- Timestamp:
- Dec 4, 2019, 9:16:26 AM (3 years ago)
- Branches:
- asyncio, main, master, proxy-ticket
- Children:
- ce85a5f
- Parents:
- 1c2b936
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/https-test-client.py
r1c2b936 r851173b 170 170 yaml_tag = '!connection' 171 171 172 def __init__(self, actions, gnutls_params=[], protocol='https'):172 def __init__(self, actions, gnutls_params=[], transport='gnutls'): 173 173 self.gnutls_params = gnutls_params 174 174 self.actions = actions 175 self. protocol = protocol175 self.transport = transport 176 176 177 177 def __repr__(self): 178 178 return (f'{self.__class__.__name__!s}' 179 179 f'(gnutls_params={self.gnutls_params!r}, ' 180 f'actions={self.actions!r}, protocol={self.protocol!r})')180 f'actions={self.actions!r}, transport={self.transport!r})') 181 181 182 182 @classmethod
Note: See TracChangeset
for help on using the changeset viewer.