fec.util.mathutil.permute: fix docstring

This commit is contained in:
Brian Warner 2007-04-16 11:51:04 -07:00
parent 652e8a735f
commit 8aa2694595

View File

@ -75,7 +75,7 @@ def permute(l):
Return all possible permutations of l. Return all possible permutations of l.
@type l: sequence @type l: sequence
@rtype a set of sequences @rtype: a list of sequences
""" """
if len(l) == 1: if len(l) == 1:
return [l,] return [l,]