diff options
Diffstat (limited to 'tests/basics/with-continue.py')
-rw-r--r-- | tests/basics/with-continue.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/basics/with-continue.py b/tests/basics/with-continue.py deleted file mode 100644 index fc2b24bd4b..0000000000 --- a/tests/basics/with-continue.py +++ /dev/null @@ -1,14 +0,0 @@ -class CtxMgr: - - def __enter__(self): - print("__enter__") - return self - - def __exit__(self, a, b, c): - print("__exit__", repr(a), repr(b)) - -for i in range(5): - print(i) - with CtxMgr(): - if i == 3: - continue |