Require implementations for warnings.showwarning() support the 'line' argument.
[python.git] / Lib / contextlib.py
blobc9793af6ef4ae58bd5528b31dceaf2de411784c0
1 """Utilities for with-statement contexts. See PEP 343."""
3 import sys
4 from functools import wraps
6 __all__ = ["contextmanager", "nested", "closing"]
8 class GeneratorContextManager(object):
9 """Helper for @contextmanager decorator."""
11 def __init__(self, gen):
12 self.gen = gen
14 def __enter__(self):
15 try:
16 return self.gen.next()
17 except StopIteration:
18 raise RuntimeError("generator didn't yield")
20 def __exit__(self, type, value, traceback):
21 if type is None:
22 try:
23 self.gen.next()
24 except StopIteration:
25 return
26 else:
27 raise RuntimeError("generator didn't stop")
28 else:
29 if value is None:
30 # Need to force instantiation so we can reliably
31 # tell if we get the same exception back
32 value = type()
33 try:
34 self.gen.throw(type, value, traceback)
35 raise RuntimeError("generator didn't stop after throw()")
36 except StopIteration, exc:
37 # Suppress the exception *unless* it's the same exception that
38 # was passed to throw(). This prevents a StopIteration
39 # raised inside the "with" statement from being suppressed
40 return exc is not value
41 except:
42 # only re-raise if it's *not* the exception that was
43 # passed to throw(), because __exit__() must not raise
44 # an exception unless __exit__() itself failed. But throw()
45 # has to raise the exception to signal propagation, so this
46 # fixes the impedance mismatch between the throw() protocol
47 # and the __exit__() protocol.
49 if sys.exc_info()[1] is not value:
50 raise
53 def contextmanager(func):
54 """@contextmanager decorator.
56 Typical usage:
58 @contextmanager
59 def some_generator(<arguments>):
60 <setup>
61 try:
62 yield <value>
63 finally:
64 <cleanup>
66 This makes this:
68 with some_generator(<arguments>) as <variable>:
69 <body>
71 equivalent to this:
73 <setup>
74 try:
75 <variable> = <value>
76 <body>
77 finally:
78 <cleanup>
80 """
81 @wraps(func)
82 def helper(*args, **kwds):
83 return GeneratorContextManager(func(*args, **kwds))
84 return helper
87 @contextmanager
88 def nested(*managers):
89 """Support multiple context managers in a single with-statement.
91 Code like this:
93 with nested(A, B, C) as (X, Y, Z):
94 <body>
96 is equivalent to this:
98 with A as X:
99 with B as Y:
100 with C as Z:
101 <body>
104 exits = []
105 vars = []
106 exc = (None, None, None)
107 try:
108 for mgr in managers:
109 exit = mgr.__exit__
110 enter = mgr.__enter__
111 vars.append(enter())
112 exits.append(exit)
113 yield vars
114 except:
115 exc = sys.exc_info()
116 finally:
117 while exits:
118 exit = exits.pop()
119 try:
120 if exit(*exc):
121 exc = (None, None, None)
122 except:
123 exc = sys.exc_info()
124 if exc != (None, None, None):
125 # Don't rely on sys.exc_info() still containing
126 # the right information. Another exception may
127 # have been raised and caught by an exit method
128 raise exc[0], exc[1], exc[2]
131 class closing(object):
132 """Context to automatically close something at the end of a block.
134 Code like this:
136 with closing(<module>.open(<arguments>)) as f:
137 <block>
139 is equivalent to this:
141 f = <module>.open(<arguments>)
142 try:
143 <block>
144 finally:
145 f.close()
148 def __init__(self, thing):
149 self.thing = thing
150 def __enter__(self):
151 return self.thing
152 def __exit__(self, *exc_info):
153 self.thing.close()