8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44cebb9 commit f33c490Copy full SHA for f33c490
examples/misc/multiprocess.py
@@ -1,15 +1,10 @@
1
# Demo of using multiprocessing for generating data in one process and plotting
2
# in another.
3
# Written by Robert Cimrman
4
-# Requires >= Python 2.6 for the multiprocessing module or having the
5
-# standalone processing module installed
6
7
from __future__ import print_function
8
import time
9
-try:
10
- from multiprocessing import Process, Pipe
11
-except ImportError:
12
- from processing import Process, Pipe
+from multiprocessing import Process, Pipe
13
import numpy as np
14
15
import matplotlib
0 commit comments