python Programming Glossary: inner_writes
What limitations have closures in Python compared to language X closures? http://stackoverflow.com/questions/141642/what-limitations-have-closures-in-python-compared-to-language-x-closures ... # Will return outer's 'x'. ... return x ... def inner_writes y ... # Will assign to a local 'x' not the outer 'x' ... x y.. ... tmp x ... x y ... return tmp ... return inner_reads inner_writes inner_error ... inner_reads inner_writes inner_error outer 5.. inner_reads inner_writes inner_error ... inner_reads inner_writes inner_error outer 5 inner_reads 5 inner_writes 10 inner_reads..
|