mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
12 lines
439 B
Diff
12 lines
439 B
Diff
|
--- ./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
|