OILS
/
mycpp
/
examples
/ invalid_ctx_name.py
View on Github
|
oils.pub
12 lines, 4 significant
1
#!/usr/bin/env python2
2
"""
3
invalid_ctx_name.py
4
"""
5
from typing import Any
6
7
8
class ShouldStartWithCtx(object):
9
10
def __exit__(self, type, value, traceback):
11
# type: (Any, Any, Any) -> None
12
pass