summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/true-value.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/true-value.py')
-rw-r--r--tests/basics/true-value.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/basics/true-value.py b/tests/basics/true-value.py
index 1dd547f326..9ec209fe82 100644
--- a/tests/basics/true-value.py
+++ b/tests/basics/true-value.py
@@ -9,12 +9,6 @@ if not None:
if not 0:
print("0")
-if not 0.0:
- print("float 0")
-
-if not 0+0j:
- print("complex 0")
-
if not "":
print("Empty string")
if "foo":