Skip to content

Commit

Permalink
drop Python 2.3 fallback
Browse files Browse the repository at this point in the history
Use of python3-six is now redundant per https://wiki.debian.org/Python3-six-removal
  • Loading branch information
a-detiste authored and chimosky committed Oct 6, 2024
1 parent 462bd30 commit 2800adf
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/sugar3/dispatch/dispatcher.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
import weakref
import six

try:
set
except NameError:
from sets import Set as set # Python 2.3 fallback

from sugar3.dispatch import saferef

WEAKREF_TYPES = (weakref.ReferenceType, saferef.BoundMethodWeakref)
Expand Down

0 comments on commit 2800adf

Please sign in to comment.