New ScreenPanel

This commit is contained in:
2018-01-19 10:56:53 +01:00
commit ae4d621609
580 changed files with 46598 additions and 0 deletions

16
script/cpython7.py Executable file
View File

@@ -0,0 +1,16 @@
import signal, os, sys
import thread
print thread.get_ident()
def handler(signum, frame):
print 'Signal handler called with signal', signum
raise IOError("Couldn't open device!")
# Set the signal handler and a 5-second alarm
signal.signal(4, handler)
#signal