summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bangert <ben@groovie.org>2020-07-30 10:59:03 -0700
committerGitHub <noreply@github.com>2020-07-30 10:59:03 -0700
commitce4c668485506fc0f3dbaaf3c8590e2247c88d0b (patch)
tree43083b36d7446abc16081de93350ab514fdd876f
parent40e4b58451d461a98b14711627c4f2eb735f1b10 (diff)
parent2c5cc2f6b2ffbd27da6c88c285715cdc2ce84447 (diff)
downloadroutes-ce4c668485506fc0f3dbaaf3c8590e2247c88d0b.tar.gz
Merge pull request #80 from jwilk-forks/python2.3
Remove obsolete Python 2.3 compat code
-rw-r--r--routes/route.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/routes/route.py b/routes/route.py
index 860a911..84bbd2d 100644
--- a/routes/route.py
+++ b/routes/route.py
@@ -1,7 +1,5 @@
import re
import sys
-if sys.version < '2.4':
- from sets import ImmutableSet as frozenset
import six
from six.moves.urllib import parse as urlparse