From 0c807bd9125ad841caecc45c1eb8fa478352a11f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20V=C3=B6r=C3=B6s?= Date: Wed, 21 Sep 2022 20:00:03 +0200 Subject: [PATCH] remove comments from methods.py --- tests/2d/numpy/methods.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/2d/numpy/methods.py b/tests/2d/numpy/methods.py index 02c9a73..1c687d1 100644 --- a/tests/2d/numpy/methods.py +++ b/tests/2d/numpy/methods.py @@ -42,10 +42,3 @@ print(b) c = a.byteswap(inplace=True) print(a) print(c) -# a = np.array([1, 2, 3, 4, 5, 6], dtype=np.float) -# b = a.byteswap(inplace=False) -# print(a) -# print(b) -# c = a.byteswap(inplace=True) -# print(a) -# print(c)