test-pathencode.py: drop support for Python 2.4
authorSiddharth Agarwal <sid0@fb.com>
Sat, 24 Oct 2015 16:25:16 -0700
changeset 26849 a6eb4e481134
parent 26848 d962e955da08
child 26850 00209e38e7d9
test-pathencode.py: drop support for Python 2.4
tests/test-pathencode.py
--- a/tests/test-pathencode.py	Sat Oct 24 16:23:42 2015 -0700
+++ b/tests/test-pathencode.py	Sat Oct 24 16:25:16 2015 -0700
@@ -9,9 +9,6 @@
 import binascii, itertools, math, os, random, sys, time
 import collections
 
-if sys.version_info[:2] < (2, 6):
-    sys.exit(0)
-
 validchars = set(map(chr, range(0, 256)))
 alphanum = range(ord('A'), ord('Z'))