comparison: Plugins/VcsPlugins/vcsMercurial/hg.py
Plugins/VcsPlugins/vcsMercurial/hg.py
- branch
- Py2 comp.
- changeset 2525
- 8b507a9a2d40
- parent 2405
- d4b5f3bd4720
- child 2545
- 2d385ccc14f9
equal
deleted
inserted
replaced
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing the version control systems interface to Mercurial. |
7 Module implementing the version control systems interface to Mercurial. |
8 """ |
8 """ |
|
9 |
|
10 from __future__ import unicode_literals # __IGNORE_WARNING__ |
|
11 try: |
|
12 str = unicode |
|
13 except (NameError): |
|
14 pass |
9 |
15 |
10 import os |
16 import os |
11 import shutil |
17 import shutil |
12 import re |
18 import re |
13 import urllib.request |
19 import urllib.request |