OILS / mycpp / examples / invalid_ctx_name.py View on Github | oils.pub

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