Changeset 3deb86e in mod_gnutls


Ignore:
Timestamp:
Jan 4, 2020, 4:24:45 AM (3 years ago)
Author:
Fiona Klute <fiona.klute@…>
Branches:
asyncio, main, master, proxy-ticket
Children:
190d459
Parents:
63e4efe
Message:

Reorganize imports, remove already done TODO

Location:
test/mgstest
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • test/mgstest/__init__.py

    r63e4efe r3deb86e  
    1717"""Python modules for the mod_gnutls test suite."""
    1818
     19import fcntl
    1920import sys
    2021
    21 import fcntl
    2222from contextlib import contextmanager
    2323
  • test/mgstest/hooks.py

    r63e4efe r3deb86e  
    2828        * conn_log: file object for connection logging
    2929        * response_log: file object for HTTP response logging
    30 
    3130
    3231    post_check:
  • test/mgstest/http.py

    r63e4efe r3deb86e  
    6565        s_local.settimeout(self.timeout)
    6666
    67         # TODO: Maybe capture stderr?
    6867        if self._output_filter:
    6968            self._sproc = subprocess.Popen(self.command, stdout=subprocess.PIPE,
  • test/mgstest/tests.py

    r63e4efe r3deb86e  
    2323import os
    2424import re
     25import select
    2526import subprocess
    2627import sys
     
    320321
    321322    """
    322     import os
    323     import select
    324323    # message to filter
    325324    cert_log = b'Processed 1 client X.509 certificates...\n'
Note: See TracChangeset for help on using the changeset viewer.