JuliaPy / PythonCall.jl

Python and Julia in harmony.
https://juliapy.github.io/PythonCall.jl/stable/
MIT License
717 stars 61 forks source link

python `with` syntax #420

Open jebej opened 7 months ago

jebej commented 7 months ago

I see in the PyMacro file there is a todo item for adding the with syntax. Is there any alternative currently?

cjdoris commented 7 months ago

Your alternatives are to use the pywith function or to call __enter__ and __exit__ yourself.