[issue29618] Making a Tuple or Dict with Callable[ ..., xxx ] gives error

2017-02-22 Thread Pauli Salmenrinne
Pauli Salmenrinne added the comment: I tried to reproduce the issue with 3.5 branch from the current github, and the issue seems to be fixed. Closing this as fixed, sorry for the trouble. -- resolution: -> fixed stage: -> resolved status: open -> closed

[issue29618] Making a Tuple or Dict with Callable[ ..., xxx ] gives error

2017-02-22 Thread Pauli Sundberg
New submission from Pauli Sundberg: Hi all. I tried asking this on IRC channel, but ended up with no answear. Simple example: from typing import Dict, Callable CmdFun= Callable[ ... , int ] CmdFull = Dict[ str, CmdFun ] Gives error: pauli@HPauli-U1604 ~ % python3 /tmp/silly.py