[Python-Dev] With statement
Greg Ewing
greg@cosc.canterbury.ac.nz
Wed, 05 Feb 2003 16:37:04 +1300 (NZDT)
> with lock(my_lock):
> # protected code
But if my_lock is already a lock object, with appropriate enter
and leave methods, what would the lock() function do?
If the answer is
def lock(x):
return x
then I'd say that I don't like the idea of a do-nothing
function whose purpose is only to make the code look
pretty.
Greg Ewing, Computer Science Dept, +--------------------------------------+
University of Canterbury, | A citizen of NewZealandCorp, a |
Christchurch, New Zealand | wholly-owned subsidiary of USA Inc. |
greg@cosc.canterbury.ac.nz +--------------------------------------+