mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
17 lines
180 B
Python
17 lines
180 B
Python
-1 + 1
|
|
1 + 1.0
|
|
#! 2 type-error-operation
|
|
1 + '1'
|
|
#! 2 type-error-operation
|
|
1 - '1'
|
|
|
|
-1 - - 1
|
|
-1 - int()
|
|
int() - float()
|
|
float() - 3.0
|
|
|
|
a = 3
|
|
b = ''
|
|
#! 2 type-error-operation
|
|
a + b
|