summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Lib/contextlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tools/python3/Lib/contextlib.py')
-rw-r--r--contrib/tools/python3/Lib/contextlib.py58
1 files changed, 36 insertions, 22 deletions
diff --git a/contrib/tools/python3/Lib/contextlib.py b/contrib/tools/python3/Lib/contextlib.py
index b831d8916ca..5b646fabca0 100644
--- a/contrib/tools/python3/Lib/contextlib.py
+++ b/contrib/tools/python3/Lib/contextlib.py
@@ -20,6 +20,8 @@ class AbstractContextManager(abc.ABC):
__class_getitem__ = classmethod(GenericAlias)
+ __slots__ = ()
+
def __enter__(self):
"""Return `self` upon entering the runtime context."""
return self
@@ -42,6 +44,8 @@ class AbstractAsyncContextManager(abc.ABC):
__class_getitem__ = classmethod(GenericAlias)
+ __slots__ = ()
+
async def __aenter__(self):
"""Return `self` upon entering the runtime context."""
return self
@@ -565,11 +569,12 @@ class ExitStack(_BaseExitStack, AbstractContextManager):
return self
def __exit__(self, *exc_details):
- received_exc = exc_details[0] is not None
+ exc = exc_details[1]
+ received_exc = exc is not None
# We manipulate the exception state so it behaves as though
# we were actually nesting multiple with statements
- frame_exc = sys.exc_info()[1]
+ frame_exc = sys.exception()
def _fix_exception_context(new_exc, old_exc):
# Context may not be correct, so find the end of the chain
while 1:
@@ -592,24 +597,28 @@ class ExitStack(_BaseExitStack, AbstractContextManager):
is_sync, cb = self._exit_callbacks.pop()
assert is_sync
try:
+ if exc is None:
+ exc_details = None, None, None
+ else:
+ exc_details = type(exc), exc, exc.__traceback__
if cb(*exc_details):
suppressed_exc = True
pending_raise = False
- exc_details = (None, None, None)
- except:
- new_exc_details = sys.exc_info()
+ exc = None
+ except BaseException as new_exc:
# simulate the stack of exceptions by setting the context
- _fix_exception_context(new_exc_details[1], exc_details[1])
+ _fix_exception_context(new_exc, exc)
pending_raise = True
- exc_details = new_exc_details
+ exc = new_exc
+
if pending_raise:
try:
- # bare "raise exc_details[1]" replaces our carefully
+ # bare "raise exc" replaces our carefully
# set-up context
- fixed_ctx = exc_details[1].__context__
- raise exc_details[1]
+ fixed_ctx = exc.__context__
+ raise exc
except BaseException:
- exc_details[1].__context__ = fixed_ctx
+ exc.__context__ = fixed_ctx
raise
return received_exc and suppressed_exc
@@ -705,11 +714,12 @@ class AsyncExitStack(_BaseExitStack, AbstractAsyncContextManager):
return self
async def __aexit__(self, *exc_details):
- received_exc = exc_details[0] is not None
+ exc = exc_details[1]
+ received_exc = exc is not None
# We manipulate the exception state so it behaves as though
# we were actually nesting multiple with statements
- frame_exc = sys.exc_info()[1]
+ frame_exc = sys.exception()
def _fix_exception_context(new_exc, old_exc):
# Context may not be correct, so find the end of the chain
while 1:
@@ -731,6 +741,10 @@ class AsyncExitStack(_BaseExitStack, AbstractAsyncContextManager):
while self._exit_callbacks:
is_sync, cb = self._exit_callbacks.pop()
try:
+ if exc is None:
+ exc_details = None, None, None
+ else:
+ exc_details = type(exc), exc, exc.__traceback__
if is_sync:
cb_suppress = cb(*exc_details)
else:
@@ -739,21 +753,21 @@ class AsyncExitStack(_BaseExitStack, AbstractAsyncContextManager):
if cb_suppress:
suppressed_exc = True
pending_raise = False
- exc_details = (None, None, None)
- except:
- new_exc_details = sys.exc_info()
+ exc = None
+ except BaseException as new_exc:
# simulate the stack of exceptions by setting the context
- _fix_exception_context(new_exc_details[1], exc_details[1])
+ _fix_exception_context(new_exc, exc)
pending_raise = True
- exc_details = new_exc_details
+ exc = new_exc
+
if pending_raise:
try:
- # bare "raise exc_details[1]" replaces our carefully
+ # bare "raise exc" replaces our carefully
# set-up context
- fixed_ctx = exc_details[1].__context__
- raise exc_details[1]
+ fixed_ctx = exc.__context__
+ raise exc
except BaseException:
- exc_details[1].__context__ = fixed_ctx
+ exc.__context__ = fixed_ctx
raise
return received_exc and suppressed_exc