Python: CG trace: Handle BUILD_TUPLE

This commit is contained in:
Rasmus Wriedt Larsen
2020-07-21 23:05:49 +02:00
parent 0d05d96b50
commit 8c8656ccca
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
def foo():
print("foo")
def bar():
print("bar")
(foo, bar)[0]()