1
0
forked from VimPlug/jedi

When inferring comparison operators, return a definite type instead of NO_VALUES for the in/not in operator

This commit is contained in:
wutingjia
2024-07-09 20:30:00 +08:00
parent 82d1902f38
commit 4d09ac07e4
3 changed files with 12 additions and 1 deletions

View File

@@ -424,3 +424,10 @@ with open("a"), open("b") as bfile:
some_array = ['', '']
#! ['def upper']
some_array[some_not_defined_index].upper
# -----------------
# operator
# -----------------
#? bool()
res = 'f' in 'foo'; res