IronPython?
Le mar. 21 mars 2017 08:52, Tristan B. Kildaire a
écrit :
> Is Python.NET a version of Python that compiles Python source code to
> Microsoft's IR for running by a MS runtime?
> --
> https://mail.python.org/mailman/listinfo/python-list
>
--
https://mail.python.org/mailman/listinfo/p
Hi all,
I have a curious problem with Python exceptions.
The following code doesn't catch HttpError:
```
from server.libs.googleapiclient.errors import HttpError
[..]
try:
OAuth.backoffExec(request)
return True
except HttpError as e:
return e.resp.status == 404