7191:960850ec284c | 7192:a22eee00b052 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing an interface to the Mercurial command server. | 7 Module implementing an interface to the Mercurial command server. |
8 """ | 8 """ |
9 | |
10 try: | |
11 str = unicode | |
12 except NameError: | |
13 pass | |
14 | 9 |
15 import struct | 10 import struct |
16 import io | 11 import io |
17 | 12 |
18 from PyQt5.QtCore import QProcess, QObject, QByteArray, QCoreApplication, \ | 13 from PyQt5.QtCore import QProcess, QObject, QByteArray, QCoreApplication, \ |