diff options
Diffstat (limited to 'source/d/gyp/gyp-python310.patch')
-rw-r--r-- | source/d/gyp/gyp-python310.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/d/gyp/gyp-python310.patch b/source/d/gyp/gyp-python310.patch new file mode 100644 index 00000000..06778822 --- /dev/null +++ b/source/d/gyp/gyp-python310.patch @@ -0,0 +1,11 @@ +--- ./pylib/gyp/common.py.orig 2021-10-10 15:47:45.000000000 -0500 ++++ ./pylib/gyp/common.py 2021-10-10 15:49:24.942106994 -0500 +@@ -494,7 +494,7 @@ + + + # Based on http://code.activestate.com/recipes/576694/. +-class OrderedSet(collections.MutableSet): ++class OrderedSet(collections.abc.MutableSet): + def __init__(self, iterable=None): + self.end = end = [] + end += [None, end, end] # sentinel node for doubly linked list |