Привет Nick! 06 февраля 2005 в 02:54, Nick Coghlan в своем письме к Python List писал: NC> An alternate proposal, where the decision to request rebinding NC> semantics is made at the point of assignment:
NC> epsilon = 0 NC> S = 0 NC> while epsilon < 10: NC> S .= S + epsilon NC> epselon .= epsilon + 1 #interpreter should show error here NC> print S Well, I think epsilon. = 0 S. = 0 while epsilon < 10: S = S + epsilon epselon = epsilon + 1 #interpreter should show error here print S will be little bit more pretty, from my point of view. Or may be smth like this: `S=0 ~S=0 S~=0 S`=0 and so on. But, I think, your idea look more preaty than my previous (with var keyword) Alexander, [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list