Ticket #65990: py310-oset.patch

File py310-oset.patch, 291 bytes (added by outis, 2 years ago)

fix: updates module name

  • pyoset.py

    old new  
    1313    def next(it):
    1414        return it.next()
    1515else:
    16     from collections import MutableSet
     16    from collections.abc import MutableSet
    1717
    1818KEY, PREV, NEXT = range(3)
    1919