k5test is only supposed to require Python 2.4, but cross_realms uses
itertools.permutations which is new in 2.6. Use a list display
instead.
ticket: 7054
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25592
dc483132-0cff-0310-8789-
dd5450dbe970
"""
import atexit
-import itertools
import optparse
import os
import shlex
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 = []