summaryrefslogtreecommitdiff
path: root/dev-python/trio/files/trio-0.20.0-py311.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/trio/files/trio-0.20.0-py311.patch')
-rw-r--r--dev-python/trio/files/trio-0.20.0-py311.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/dev-python/trio/files/trio-0.20.0-py311.patch b/dev-python/trio/files/trio-0.20.0-py311.patch
deleted file mode 100644
index f7d447825a16..000000000000
--- a/dev-python/trio/files/trio-0.20.0-py311.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/trio/_core/_multierror.py b/trio/_core/_multierror.py
-index 6dfdaa7a5..de0d56d46 100644
---- a/trio/_core/_multierror.py
-+++ b/trio/_core/_multierror.py
-@@ -383,11 +383,10 @@ def traceback_exception_init(
- capture_locals=False,
- compact=False,
- _seen=None,
-+ **kwargs,
- ):
- if sys.version_info >= (3, 10):
-- kwargs = {"compact": compact}
-- else:
-- kwargs = {}
-+ kwargs["compact"] = compact
-
- # Capture the original exception and its cause and context as TracebackExceptions
- traceback_exception_original_init(
-@@ -421,6 +420,7 @@ def traceback_exception_init(
- # copy the set of _seen exceptions so that duplicates
- # shared between sub-exceptions are not omitted
- _seen=None if seen_was_none else set(_seen),
-+ **kwargs,
- )
- )
- self.embedded = embedded