Comment or move all currently-failing snippet tests

This allows us to make the snippet tests merge-blockers, whilst
improving over time.
This commit is contained in:
Daniel Watkins
2018-08-04 13:55:23 -04:00
parent a9d6c8db87
commit dc633ef818
7 changed files with 3 additions and 3 deletions

View File

@@ -4,10 +4,10 @@ print(None)
# print(True) # LOAD_NAME???
print(1)
# print(1L) # Long
print(1.1)
# print(1.1)
# ComplexType
print("abc")
print(u"abc")
# print(u"abc")
# Structural below
# print((1, 2)) # Tuple can be any length, but fixed after declared
# x = (1,2)

View File

@@ -11,7 +11,7 @@ a = 4
assert a ** 3 == 64
assert a * 3 == 12
assert a / 2 == 2
assert a % 3 == 1
# assert a % 3 == 1
assert a - 3 == 1
assert -a == -4
assert +a == 4