Should methods in stubs be allowed to declare that they can throw exceptions? When Jukka and I discussed this, we came up with the syntax ideas ``` def f(): raise IOError() raise EOFError() ``` and ``` def f(): typing.raises(IOError, EOFError) ```