diff options
author | debashisdeb | 2014-06-20 15:42:42 +0530 |
---|---|---|
committer | debashisdeb | 2014-06-20 15:42:42 +0530 |
commit | 83c1bfceb1b681b4bb7253b47491be2d8b2014a1 (patch) | |
tree | f54eab21dd3d725d64a495fcd47c00d37abed004 /Let_us_C/chapter-20.ipynb | |
parent | a78126bbe4443e9526a64df9d8245c4af8843044 (diff) | |
download | Python-Textbook-Companions-83c1bfceb1b681b4bb7253b47491be2d8b2014a1.tar.gz Python-Textbook-Companions-83c1bfceb1b681b4bb7253b47491be2d8b2014a1.tar.bz2 Python-Textbook-Companions-83c1bfceb1b681b4bb7253b47491be2d8b2014a1.zip |
removing problem statements
Diffstat (limited to 'Let_us_C/chapter-20.ipynb')
-rw-r--r-- | Let_us_C/chapter-20.ipynb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Let_us_C/chapter-20.ipynb b/Let_us_C/chapter-20.ipynb index 52b3cd37..16c8fdc8 100644 --- a/Let_us_C/chapter-20.ipynb +++ b/Let_us_C/chapter-20.ipynb @@ -25,7 +25,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate how to create a child process'''\n",
"\n",
"import os\n",
"\n",
@@ -50,7 +49,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate how to create a child process'''\n",
"\n",
"import os\n",
"\n",
@@ -76,7 +74,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to get the pids of parent and child processes'''\n",
"\n",
"import os\n",
"from multiprocessing import Process\n",
@@ -115,7 +112,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program that uses execl( ) to run a new program in the child process.'''\n",
"\n",
"import os\n",
"\n",
@@ -143,8 +139,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program that gets the exit code\n",
- "of the terminated process and thereby ensures a proper cleanup.'''\n",
"\n",
"import os\n",
"\n",
|