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