hi,
    it might be me and im getting this wrong but surely you could use a try:
except clause?

try:
    codeloop()
except keyboardinterupt:
    mainloop()


or something to that effect.

On Mon, Jan 5, 2009 at 3:38 PM, Daniel Kersten <[email protected]> wrote:

>
> Hi & happy new year,
>
> I'm wondering if theres anyway of resuming after a KeyboardInterrupt
> exception, if I catch it. For example, can I retrieve the code object
> or stack or something from when execution was interrupted and continue
> from there.
>
> Basically, I would like to use Ctrl-C as a way to temporarily break
> out of my program to enter a menu (in this particular case, the menu
> allows you to quit, continue and enter pdb). This works fine in most
> cases, but if I interrupt in the middle of certain operations, when I
> resume, I lose data. Of course, I can write my code to avoid this, but
> that may not always be possible.
>
> Any ideas? Or do I need to handle the menu in a separate thread..?
>
> Thanks!
> Dan.
>
> --
> Daniel Kersten.
> Leveraging dynamic paradigms since the synergies of 1985.
>
> >
>


-- 
~Ajurna

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Python Ireland" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.ie/group/pythonireland?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to