mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
possible direction of branch checks for name resolution.
This commit is contained in:
@@ -23,18 +23,18 @@ a(0):.
|
||||
# if/else/elif
|
||||
# -----------------
|
||||
|
||||
if 1:
|
||||
if (random.choice([0, 1])):
|
||||
1
|
||||
elif(3):
|
||||
elif(random.choice([0, 1])):
|
||||
a = 3
|
||||
else:
|
||||
a = ''
|
||||
#? int() str()
|
||||
a
|
||||
def func():
|
||||
if 1:
|
||||
if random.choice([0, 1]):
|
||||
1
|
||||
elif(3):
|
||||
elif(random.choice([0, 1])):
|
||||
a = 3
|
||||
else:
|
||||
a = ''
|
||||
|
||||
Reference in New Issue
Block a user