8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our d 8000 ocumentation.
There was an error while loading. Please reload this page.
1 parent 16cd048 commit d78335aCopy full SHA for d78335a
tests/multi_net/ssl_context_rsa.py
@@ -2,7 +2,8 @@
2
# This test won't run under CPython because CPython doesn't have key/cert
3
4
try:
5
- import ubinascii as binascii, usocket as socket
+ import binascii
6
+ import socket
7
import ssl
8
except ImportError:
9
print("SKIP")
tests/net_inet/test_ssl_context_client.py
@@ -1,14 +1,6 @@
1
import socket
-
-try:
- import ubinascii as binascii
-except:
- import binascii
- import usocket as socket
10
11
- import socket
+import binascii
12
13
# This certificate was obtained from micropython.org using openssl:
14
# $ openssl s_client -showcerts -connect micropython.org:443 </dev/null 2>/dev/null
0 commit comments