changeset 26849:a6eb4e481134

test-pathencode.py: drop support for Python 2.4
author Siddharth Agarwal <sid0@fb.com>
date Sat, 24 Oct 2015 16:25:16 -0700
parents d962e955da08
children 00209e38e7d9
files tests/test-pathencode.py
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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'))