Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/chgserver.py @ 43089:c59eb1560c44
py3: manually import getattr where it is needed
The march continues.
Differential Revision: https://phab.mercurial-scm.org/D7009
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sun, 06 Oct 2019 16:55:18 -0400 |
parents | 66f2cc210a29 |
children | d783f945a701 |
comparison
equal
deleted
inserted
replaced
43088:0d612db7047c | 43089:c59eb1560c44 |
---|---|
49 import stat | 49 import stat |
50 import struct | 50 import struct |
51 import time | 51 import time |
52 | 52 |
53 from .i18n import _ | 53 from .i18n import _ |
54 from .pycompat import setattr | 54 from .pycompat import ( |
55 getattr, | |
56 setattr, | |
57 ) | |
55 | 58 |
56 from . import ( | 59 from . import ( |
57 commandserver, | 60 commandserver, |
58 encoding, | 61 encoding, |
59 error, | 62 error, |