You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
We now run 3.5 verifycation so we need to remove some of the tests that fail to verify pending fixing.
8 lines
171 B
Python
8 lines
171 B
Python
# Tests Python 3.5+'s ops
|
|
|
|
# BINARY_MATRIX_MULTIPLY and INPLACE_MATRIX_MULTIPLY
|
|
# code taken from pycdc tests/35_matrix_mult_oper.pyc.src
|
|
|
|
m = [1, 2] @ [3, 4]
|
|
m @= [5, 6]
|