Itertools.combinations not available

I am trying to use the itertools.combinations() function and get the following error. Is the combinations() function not part of itertools in Ignition? Is there a way to list out the functions in itertools so that I know whats available? I have tried from itertools import combinations as well and get the same thing.

Traceback (most recent call last):
File "", line 2, in
AttributeError: type object 'org.python.modules.itertools' has no attribute 'combinations'

Preformatted text
import itertools
print list(itertools.combinations('ABC',2))

Ignition 7.9 uses Jython 2.5 and it seems itertools.combinations was introduced in Python 2.6.

Thanks I had a feeling that was the case.