12c66be2b8
Used gcov to find some parts of vm.c, runtime.c, obj.c that were not covered by any tests. Still need to use gcov more thoroughly.
18 lines
217 B
Python
18 lines
217 B
Python
x = 1
|
|
print(+x)
|
|
print(-x)
|
|
print(~x)
|
|
|
|
print(not None)
|
|
print(not False)
|
|
print(not True)
|
|
print(not 0)
|
|
print(not 1)
|
|
print(not -1)
|
|
print(not ())
|
|
print(not (1,))
|
|
print(not [])
|
|
print(not [1,])
|
|
print(not {})
|
|
print(not {1:1})
|