5292:ac8b476ba122 | 5293:26f1e696a2a5 |
---|---|
6 """ | 6 """ |
7 Module implementing some common utility functions for the Mercurial package. | 7 Module implementing some common utility functions for the Mercurial package. |
8 """ | 8 """ |
9 | 9 |
10 from __future__ import unicode_literals | 10 from __future__ import unicode_literals |
11 try: | |
12 str = unicode | |
13 except NameError: | |
14 pass | |
11 | 15 |
12 import os | 16 import os |
13 import re | 17 import re |
14 | 18 |
15 from PyQt5.QtCore import QProcess, QProcessEnvironment, QCoreApplication | 19 from PyQt5.QtCore import QProcess, QProcessEnvironment, QCoreApplication |