diff options
Diffstat (limited to 'Let_us_C/chapter-21.ipynb')
-rw-r--r-- | Let_us_C/chapter-21.ipynb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Let_us_C/chapter-21.ipynb b/Let_us_C/chapter-21.ipynb index 7cf37612..9883bc71 100644 --- a/Let_us_C/chapter-21.ipynb +++ b/Let_us_C/chapter-21.ipynb @@ -25,7 +25,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to prevent the termination of a program even after hitting Ctrl + C'''\n",
"\n",
"import signal, os\n",
"\n",
@@ -52,7 +51,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to handle multiple signals.'''\n",
"\n",
"import signal, os\n",
"\n",
@@ -88,8 +86,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate a common signal handler to handle all signals\n",
- "instead of registering a separate handler for each signal'''\n",
"\n",
"import signal, os\n",
"\n",
@@ -123,7 +119,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to understand signal blocking '''\n",
"\n",
"import signal, os\n",
"\n",
@@ -164,7 +159,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program that uses GTK toolkit to create a window on the screen.'''\n",
"\n",
"from tkinter import *\n",
"\n",
@@ -198,7 +192,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to draw a few shapes in a window'''\n",
"\n",
"from tkinter import *\n",
"\n",
|