pylyzer/tests/union.py
Shunsuke Shibayama b854eb7126 fix: minor bugs
update deps
2024-09-26 18:18:27 +09:00

13 lines
251 B
Python

s: str | bytes = ""
s2 = s.capitalize()
s3 = s2.center(1)
s4: str | bytes | bytearray = ""
_ = s4.__len__()
def f(x: str | bytes):
return x.isalnum()
def check(s: str | bytes | bytearray):
if isinstance(s, (bytes, bytearray)):
pass