Please help with MemoryError
mk
mrkafk at gmail.com
Fri Feb 12 15:07:08 EST 2010
More information about the Python-list mailing list
Fri Feb 12 15:07:08 EST 2010
- Previous message (by thread): Please help with MemoryError
- Next message (by thread): Please help with MemoryError
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
John Posner wrote: >> http://effbot.org/zone/call-by-object.htm >> http://en.wikipedia.org/wiki/Evaluation_strategy > [1] http://mail.python.org/pipermail/edu-sig/2008-May/008583.html Hmm how about "call by label-value"? That is, you change labels by assignment, but pass the value of the label to a function. Since label value is passed, original label is not changed (i.e. it's not call by reference). However, an object referenced by label value can be changed in Python, like in classic example of list label passed to a function and then this list being modified in a function. Regards, mk
- Previous message (by thread): Please help with MemoryError
- Next message (by thread): Please help with MemoryError
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list