Suppose you have:
with with_target_expression() as with_variable: with_block_contents(with_variable)I understand the basic high-level intent here - that the target / with_variable will be "gotten rid of" sensibly after the with_block_contents completes.
But what is the full "raw" / "basic" Python being called/implied by this?