1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 08:00:04 +08:00
SpaceVim/bundle/jedi-vim/pythonx/jedi/test/static_analysis/operations.py
2022-10-23 15:41:52 +08: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