Changeset d14d7d1 in mod_gnutls
- Timestamp:
- Jan 8, 2020, 2:45:07 AM (13 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- 8666b50
- Parents:
- 0cfe818
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/tests/16_view-status/hooks.py
r0cfe818 rd14d7d1 9 9 # type that may be enclosed in the same brackets as the TLS 10 10 # version is ignored. 11 re_session = '\((TLS[\d\.]+).*?\)-(.*)'11 re_session = r'\((TLS[\d\.]+).*?\)-(.*)' 12 12 13 13 # Prefix for gnutls-cli output 14 re_cli = re.compile( '(?<=^-\sDescription:\s)' + re_session + '$')14 re_cli = re.compile(r'(?<=^-\sDescription:\s)' + re_session + '$') 15 15 # Prefix in mod_status output provided by mod_gnutls 16 re_status = re.compile( '(?<=^Current TLS session:\s)' + re_session + '$')16 re_status = re.compile(r'(?<=^Current TLS session:\s)' + re_session + '$') 17 17 18 18 cli_suite = require_match(re_cli, conn_log,
Note: See TracChangeset
for help on using the changeset viewer.