[Python-ideas] Why is design-by-contracts not widely adopted?
Chris Angelico
rosuav at gmail.com
Fri Sep 28 05:35:44 EDT 2018
On Fri, Sep 28, 2018 at 7:29 PM Jonathan Fine <jfine2358 at gmail.com> wrote:
>
> I like this discussion. I'd like to add another theme, namely what
> should happen when there is an error. (This is prompted by race
> hazards when performing file system operations.)
>
> Suppose fn_a() calls fn_b(), and fn_b() raises an exception. What then
> should fn_a() do? It may be that this exception has left part or all
> of the system in an inconsistent (invalid) state.
That's why try/finally exists. You shouldn't have to worry about
contracts for that.
(Similarly, context managers, which are a way of wrapping up
try/finally into a convenient package.)
ChrisA
More information about the Python-ideas
mailing list