Re: [Python-Dev] Flow of control - a new way - Idea

2009-06-30 Thread Terry Reedy
vin vin wrote: Look up 'trampoline', but ask any further questions on python-list. ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/arch

Re: [Python-Dev] Flow of control - a new way - Idea

2009-06-30 Thread Daniel Stutzbach
On Tue, Jun 30, 2009 at 1:07 AM, vin vin<4vin...@gmail.com> wrote: > at that point if we think to move directly to B (what error handler do > if that B has the handler defined of the error), changing the frames > instruction pointer to back to the B's position (in python code without > raising an e

Re: [Python-Dev] Flow of control - a new way - Idea

2009-06-30 Thread Nick Coghlan
vin vin wrote: > > HI all > > I am not the too technical guy, but thinking about the new way of > controlling the flow instead of throwing an error. This message is too speculative/tentative for python-dev (which is about concrete development of the next version of Python) or even python-ideas (

[Python-Dev] Flow of control - a new way - Idea

2009-06-30 Thread vin vin
HI all I am not the too technical guy, but thinking about the new way of controlling the flow instead of throwing an error. as of now if we need to break a control and go back, exceptions helps, but it is not a actual way. it would be great if we have a control over the frames execution, I mean