Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# Test ssl.wrap_socket() with cadata passed in.
try:
import io
import ssl
except ImportError:
print("SKIP")
raise SystemExit
# Invalid cadata.
ssl.wrap_socket(io.BytesIO(), cadata=b"!")
except TypeError:
# "cadata" keyword argument is not supported by axtls.
except ValueError as er:
print(repr(er))