Python Forum
my new code - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Forum & Off Topic (https://python-forum.io/forum-23.html)
+--- Forum: Bar (https://python-forum.io/forum-27.html)
+--- Thread: my new code (/thread-3369.html)



my new code - Skaperen - May-18-2017

i rewrote my columnizer module to correct some issues in the previous design.  this on is still not finished and goes into a loop. there must be s missing test or something like that.  but the real mystery about is that ^C and ^Z do not work.  i get the echoback of "^C" and "^Z" but the program just keeps running. what could cause that?  i don't think i coded anything that could do this.


RE: my new code - Mekire - May-18-2017

Do you have a bare except: somewhere? You might be accidentally catching key-interrupt events.


RE: my new code - wavic - May-18-2017

Linux - bash?
^Z sends the program at the background I think.
^C should terminate it.

Does it run as a daemon