Skip to content

Commit 7eabd4e

Browse files
committed
Reformat python with black 2026.1.0
1 parent e2f8854 commit 7eabd4e

1 file changed

Lines changed: 8 additions & 16 deletions

File tree

admin/matrix.py

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ def read_impls():
6767

6868
# Combined requirements of curl 7.81.0-1ubuntu1.15, and curl 8.5.0
6969
# extracted by running with LD_DEBUG=all
70-
CURL = set(
71-
"""
70+
CURL = set("""
7271
BIO_f_ssl
7372
OPENSSL_init_ssl
7473
SSL_alert_desc_string_long
@@ -133,13 +132,11 @@ def read_impls():
133132
SSL_shutdown
134133
SSL_write
135134
TLS_client_method
136-
""".split()
137-
)
135+
""".split())
138136

139137
# Combined requirements of nginx 1.18.0-6ubuntu14.4, and nginx 1.24.0,
140138
# and fedora nginx 1.26.1-1.fc40. extracted by running with LD_DEBUG=all
141-
NGINX = set(
142-
"""
139+
NGINX = set("""
143140
d2i_SSL_SESSION
144141
i2d_SSL_SESSION
145142
OPENSSL_init_ssl
@@ -258,12 +255,10 @@ def read_impls():
258255
SSL_write
259256
SSL_write_early_data
260257
TLS_method
261-
""".split()
262-
)
258+
""".split())
263259

264260
# Requirements of haproxy 2.8.5-1ubuntu3.3
265-
HAPROXY = set(
266-
"""
261+
HAPROXY = set("""
267262
d2i_SSL_SESSION
268263
i2d_SSL_SESSION
269264
SSL_CIPHER_find
@@ -372,8 +367,7 @@ def read_impls():
372367
SSL_write_early_data
373368
TLS_client_method
374369
TLS_server_method
375-
""".split()
376-
)
370+
""".split())
377371

378372
print("| Symbol | curl[^curl] | nginx[^nginx] | haproxy[^haproxy] | implemented? |")
379373
print("|---|---|---|---|---|")
@@ -394,8 +388,7 @@ def read_impls():
394388
+ " |"
395389
)
396390

397-
print(
398-
"""
391+
print("""
399392
[^stub]: symbol exists, but just returns an error.
400393
[^deprecatedin_1_1_0]: deprecated in openssl 1.1.0
401394
[^deprecatedin_3_0]: deprecated in openssl 3.0
@@ -418,5 +411,4 @@ def read_impls():
418411
[^engine]: openssl ENGINE-specific
419412
[^curl]: combined requirements of curl 7.81.0-1ubuntu1.15 (ubuntu 22.04), and curl 8.5.0 (ubuntu 24.04)
420413
[^nginx]: combined requirements of nginx 1.18.0-6ubuntu14.4 (ubuntu 22.04), and nginx 1.24.0 (ubuntu 24.04), and fedora nginx 1.26.1-1.fc40
421-
[^haproxy]: haproxy 2.8.5-1ubuntu3.3 (ubuntu 24.04)"""
422-
)
414+
[^haproxy]: haproxy 2.8.5-1ubuntu3.3 (ubuntu 24.04)""")

0 commit comments

Comments
 (0)