diff options
Diffstat (limited to 'tests/float/list-index.py')
-rw-r--r-- | tests/float/list-index.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/float/list-index.py b/tests/float/list-index.py deleted file mode 100644 index 13e4557af7..0000000000 --- a/tests/float/list-index.py +++ /dev/null @@ -1,8 +0,0 @@ -x = [1, 2] - -print(x[1]) - -try: - print(x[1.0]) -except TypeError: - print("TypeError") |