blob: a442af3f5bc96051af65c3468bfdfb090151ee67 (
plain)
1
2
3
4
5
6
7
8
9
|
"""
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])
|