blob: b29895aa75892685e251abf4a786312964bed38f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
"""
categories: Modules,array
description: Looking for integer not implemented
cause: Unknown
workaround: Unknown
"""
import array
print(1 in array.array("B", b"12"))
|