summaryrefslogtreecommitdiffstats
path: root/src/util/k5test.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/k5test.py')
-rw-r--r--src/util/k5test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/k5test.py b/src/util/k5test.py
index 0e7c30b626..60c19acb24 100644
--- a/src/util/k5test.py
+++ b/src/util/k5test.py
@@ -314,7 +314,6 @@ command-line flags. These are documented in the --help output.
"""
import atexit
-import itertools
import optparse
import os
import shlex
@@ -979,7 +978,8 @@ def cross_realms(num, xtgts=None, args=None, **keywords):
if xtgts is None:
# Default to cross tgts for every pair of realms.
- xtgts = frozenset(itertools.permutations(range(num), 2))
+ # (itertools.permutations would work here but is new in 2.6.)
+ xtgts = [(x,y) for x in range(num) for y in range(num) if x != y]
# Create the realms.
realms = []