diff options
Diffstat (limited to 'tests/bytecode/mp-tests/with1.py')
-rw-r--r-- | tests/bytecode/mp-tests/with1.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bytecode/mp-tests/with1.py b/tests/bytecode/mp-tests/with1.py new file mode 100644 index 0000000000..897ec530fa --- /dev/null +++ b/tests/bytecode/mp-tests/with1.py @@ -0,0 +1,8 @@ +with x: + f() +with x(): + f() +with f() as x: + f(x) +with f() as x, g() as y: + f(x, y) |