Skip to content

Commit 3ba092e

Browse files
committed
Minor: Code optimizations ('Access-Control-Allow-Origin' header)
1 parent 5d62d1f commit 3ba092e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

humble.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1539,6 +1539,10 @@ def custom_help_formatter(prog):
15391539
t_acceptch_dep = ('content-dpr', 'dpr', 'sec-ch-ua-full-version',
15401540
'viewport-width', 'width')
15411541

1542+
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
1543+
t_accecao = ('*', 'null')
1544+
t_accecaov = ('.*', '*.')
1545+
15421546
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
15431547
t_cache = ('no-cache', 'no-store', 'must-revalidate')
15441548
t_cachev = ('immutable', 'max-age', 'must-revalidate', 'must-understand',
@@ -1739,10 +1743,8 @@ def custom_help_formatter(prog):
17391743
i_cnt[0] += 1
17401744

17411745
accesso_header = headers_l.get("access-control-allow-origin", '')
1742-
if accesso_header and ((accesso_header in ['*', 'null']) and
1743-
(not any(val in accesso_header for
1744-
val in ['.*', '*.']))) and '5' not in \
1745-
skip_list:
1746+
if accesso_header and accesso_header in t_accecao and not any(
1747+
val in accesso_header for val in t_accecaov) and '5' not in skip_list:
17461748
print_details('[iaccess_h]', '[iaccess]', 'd', i_cnt)
17471749

17481750
accesma_header = headers_l.get("access-control-max-age", '')

0 commit comments

Comments
 (0)