mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
12 lines
134 B
Python
12 lines
134 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
|