comparison: Plugins/VcsPlugins/vcsMercurial/HgClient.py
Plugins/VcsPlugins/vcsMercurial/HgClient.py
- changeset 5587
- ea526b78ee6c
- parent 5389
- 9b1c800daff3
- child 5588
- 6ba512d9f46a
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 |
11 str = unicode # __IGNORE_WARNING_M131__ |
12 except NameError: |
12 except NameError: |
13 pass |
13 pass |
14 |
14 |
15 import struct |
15 import struct |
16 import io |
16 import io |