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