Say I have a list L=[1,2,3,3,4] and I want to find all permutations of length 3 recursively.
I am trying to return all unique permutations, which means something like [1,2,3] isn't included in the output twice because there are two 3's in L.
I ask because itertools.permutations includes duplicates, and also I am trying to iterate through the permutations in order (iterating from the lowest [1,2,3] up to [4,3,3]) because I want to be able to quit iterating whenever I need to.
I'm sorry if I haven't explained things properly.
Edit: I should probably elaborate again. In practice, I don't want to actually generate every single possible permutation (there would be way too many), although the code could if it ran to completion. I'm trying to iterate through all the permutations in a particular order so that I can bail early if necessary.

[1, 2, 3], but you also want to include[4, 3, 3]in the output? Perhaps that's possible, but it seems inconsistent to me... – senderle Nov 15 '12 at 23:563s as identical, and in the other case, you're treating them as distinct. It's not hard to do a post-hoc filter, but I'm having a difficult time seeing how you could generate only the values you want. How would you tell when to treat3s as identical, and when to treat them as distinct? Again, perhaps it's possible, but I'm not sure the benefit outweighs the increase in complexity. – senderle Nov 16 '12 at 0:05