guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: python-unittest2: Adjust patch for Python 3.10 compatibility


From: guix-commits
Subject: 03/03: gnu: python-unittest2: Adjust patch for Python 3.10 compatibility.
Date: Thu, 20 Apr 2023 10:59:36 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit 6d32421f6e3546380bf0a5fdc378a6988b6cd952
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Apr 20 16:42:09 2023 +0200

    gnu: python-unittest2: Adjust patch for Python 3.10 compatibility.
    
    * gnu/packages/patches/python-unittest2-python3-compat.patch: Add hunk
    for Python 3.10 compatibility.
---
 gnu/packages/patches/python-unittest2-python3-compat.patch | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/gnu/packages/patches/python-unittest2-python3-compat.patch 
b/gnu/packages/patches/python-unittest2-python3-compat.patch
index fe0afe559a..68fbccacd0 100644
--- a/gnu/packages/patches/python-unittest2-python3-compat.patch
+++ b/gnu/packages/patches/python-unittest2-python3-compat.patch
@@ -32,3 +32,15 @@ index 683f662..347eea5 100644
      def test_loadTestsFromNames__relative_malformed_name(self):
          loader = unittest.TestLoader()
  
+diff --git a/unittest2/compatibility.py b/unittest2/compatibility.py
+index 9e5f1a5..2d20c19 100644
+--- a/unittest2/compatibility.py
++++ b/unittest2/compatibility.py
+@@ -140,6 +140,6 @@ except ImportError:
+ ###  ChainMap (helper for configparser and string.Template)
+ ########################################################################
+ 
+-class ChainMap(collections.MutableMapping):
++class ChainMap(collections.abc.MutableMapping):
+     ''' A ChainMap groups multiple dicts (or other mappings) together
+     to create a single, updateable view.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]