comparison: Plugins/VcsPlugins/vcsMercurial/HgClient.py
Plugins/VcsPlugins/vcsMercurial/HgClient.py
- changeset 5624
- cdd346d8858b
- parent 5588
- 6ba512d9f46a
- child 6048
- 82ad8ec9548c
equal
deleted
inserted
replaced
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 |
9 |
10 try: |
10 try: |
11 str = unicode # __IGNORE_WARNING_M131__ |
11 str = unicode |
12 except NameError: |
12 except NameError: |
13 pass |
13 pass |
14 |
14 |
15 import struct |
15 import struct |
16 import io |
16 import io |