Suggested python feature: allowing except in context maneger
Cameron Simpson
cs at cskk.id.au
Thu Jun 13 18:49:48 EDT 2024
On 13Jun2024 19:44, dieter.maurer at online.de <dieter.maurer at online.de> wrote:
>Why not use:
>```
>try:
> with open()...
> ...
>except FileNotFoundError:
> ...
>```
This is exactly what the OP was expressing dissatisfaction with.
I'm -1 on the idea myself - not every combination of things needs
additional syntactic support, and doing stuff like merging an `except`
with a `wtih` is bound to introduce some weird corner case, complicating
its semantics.
Cheers,
Cameron Simpson <cs at cskk.id.au>
More information about the Python-list
mailing list