1
0
forked from VimPlug/jedi
Files
jedi-fork/test/static_analysis/operations.py
2018-12-22 22:08:54 +01:00

18 lines
199 B
Python

-1 + 1
1 + 1.0
#! 2 type-error-operation
1 + '1'
#! 2 type-error-operation
1 - '1'
-1 - - 1
# TODO uncomment
#-1 - int()
#int() - float()
float() - 3.0
a = 3
b = ''
#! 2 type-error-operation
a + b