Files
typeshed/stdlib
Jelle Zijlstra d2469c0e89 fix type for itertools.product (#2129)
Fixes #1850.

The fix was already applied to Python 2, but the typevar-based solution there
leads to "cannot infer value of type variable" in mypy. I used the following
script to check:

```python
from itertools import product

reveal_type(product([1]))
reveal_type(product([1], ['x'], [False], [3.0], [(1,)], [('x',)], [{1}], [{1: 2}], repeat=5))
```
2018-06-11 15:52:44 -07:00
..
2018-06-11 15:52:44 -07:00
2018-06-11 15:52:44 -07:00
2018-06-11 14:40:54 -07:00
2018-04-06 11:09:11 -07:00