|
33 | 33 | from collections import OrderedDict, Counter, ChainMap # even on Py2.6
|
34 | 34 | from subprocess import getoutput, getstatusoutput
|
35 | 35 | from subprocess import check_output # even on Py2.6
|
| 36 | + from multiprocessing import SimpleQueue |
36 | 37 |
|
37 | 38 | (The renamed modules and functions are still available under their old
|
38 | 39 | names on Python 2.)
|
|
111 | 112 | 'future.moves.socketserver': 'socketserver',
|
112 | 113 | 'ConfigParser': 'configparser',
|
113 | 114 | 'repr': 'reprlib',
|
| 115 | + 'multiprocessing.queues': 'multiprocessing', |
114 | 116 | # 'FileDialog': 'tkinter.filedialog',
|
115 | 117 | # 'tkFileDialog': 'tkinter.filedialog',
|
116 | 118 | # 'SimpleDialog': 'tkinter.simpledialog',
|
|
187 | 189 | ('itertools', 'filterfalse','itertools', 'ifilterfalse'),
|
188 | 190 | ('itertools', 'zip_longest','itertools', 'izip_longest'),
|
189 | 191 | ('sys', 'intern','__builtin__', 'intern'),
|
| 192 | + ('multiprocessing', 'SimpleQueue', 'multiprocessing.queues', 'SimpleQueue'), |
190 | 193 | # The re module has no ASCII flag in Py2, but this is the default.
|
191 | 194 | # Set re.ASCII to a zero constant. stat.ST_MODE just happens to be one
|
192 | 195 | # (and it exists on Py2.6+).
|
|
0 commit comments