Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
d0mine
on Jan 4, 2012
|
parent
|
context
|
favorite
| on:
A Programming Idiom You've Never Heard Of
It is a common idiom in C++ RAII
https://en.wikipedia.org/wiki/Resource_acquisition_is_initia...
Context managers in Python:
with fly('Seattle'): see_sights()
Real-world example from Fabric
http://fabfile.org
:
with cd('/to/path'): do_stuff()
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
Context managers in Python:
Real-world example from Fabric http://fabfile.org: