summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytearray_count.py
blob: a151c1e8183cd6555a05f11d1af2f0b3fc1dd45c (plain) (blame)
1
2
3
4
5
6
7
try:
    bytearray.count
except AttributeError:
    print("SKIP")
    raise SystemExit

print(bytearray(b"aaaa").count(b"a"))