summaryrefslogtreecommitdiff
path: root/dev-python/doublex/files/doublex-1.9.5.1-py310.patch
blob: e4aa9153115ee3207eefabd4ca43580b171370b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From b76a792b48109f1a10f460878fbe0fd78c41cd93 Mon Sep 17 00:00:00 2001
From: Sebastian Pipping <sebastian@pipping.org>
Date: Sat, 11 Feb 2023 02:00:46 +0100
Subject: [PATCH] Fix import to collections.abc.Callable for Python >=3.10

Subset of this post-1.9.5.1 upstream commit:
https://github.com/davidvilla/python-doublex/commit/425807d7276dcea0e0640384d65aeb15184c508c
---
 doublex/internal.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doublex/internal.py b/doublex/internal.py
index a85da9f..e5b25cb 100644
--- a/doublex/internal.py
+++ b/doublex/internal.py
@@ -24,8 +24,8 @@ import threading
 import functools
 import six
 
-if sys.version_info < (3, 3):
-    from collection.abc import Callable as abc_Callable, Mapping as abc_Mapping
+if sys.version_info > (3, 3):
+    from collections.abc import Callable as abc_Callable, Mapping as abc_Mapping
 else:
     from collections import Callable as abc_Callable, Mapping as abc_Mapping
 
-- 
2.39.1