diff options
-rw-r--r-- | src/util/k5test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/k5test.py b/src/util/k5test.py index 0e7c30b62..60c19acb2 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 = [] |