We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7a5080 + 9ecb947 commit f37d8a7Copy full SHA for f37d8a7
.github/workflows/tests.yml
@@ -30,6 +30,9 @@ jobs:
30
31
- python-version: 3.9
32
django-version: Django==4.0
33
+
34
+ - python-version: "3.10"
35
+ django-version: Django==4.0
36
steps:
37
- uses: actions/checkout@v2
38
- name: Set up Python ${{ matrix.python-version }}
jet/ordered_set.py
@@ -1,7 +1,7 @@
1
import collections
2
3
4
-class OrderedSet(collections.MutableSet):
+class OrderedSet(collections.abc.MutableSet):
5
def __init__(self, iterable=None):
6
self.end = end = []
7
end += [None, end, end] # sentinel node for doubly linked list
0 commit comments