Author: Armin Rigo <[email protected]> Branch: Changeset: r50098:03e42e96479d Date: 2011-12-03 18:38 +0100 http://bitbucket.org/pypy/pypy/changeset/03e42e96479d/
Log: Forgot to re-add this stub file. diff --git a/lib_pypy/itertools.py b/lib_pypy/itertools.py new file mode 100644 --- /dev/null +++ b/lib_pypy/itertools.py @@ -0,0 +1,6 @@ +try: + from __builtin_itertools import * + from __builtin_itertools import __doc__ +except ImportError: + from _itertools import * + from _itertools import __doc__ _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
