Jython:itertools 在哪里?

Jython: where is itertools?

在 Jython 2.5.3 中,尝试导入 itertools:

>>> from itertools import product
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name product

然而,如果您看到 this page from Jython docs itertools 看起来是 Jython 2.3 以来的核心部分。

我在 syspath 上需要什么来导入 iterools?

itertools.product 在 Jython 2.5 中不可用。该函数是在 CPython 2.6 中添加的,并且在 Jython 2.7 中可用。

另见 https://wiki.python.org/jython/JythonFaq/GeneralInfo#Is_Jython_the_same_language_as_Python.3F