blob: 4929b1e590dac6604b7f6aec4831c58990759f2b (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""
categories: Modules,array
description: Comparison between different typecodes not supported
cause: Code size
workaround: Compare individual elements
"""
import array
array.array("b", [1, 2]) == array.array("i", [1, 2])
|