##// END OF EJS Templates
py3: drop unused aliases to array.array which are replaced with bytearray
Yuya Nishihara -
r31360:37acdf02 default
parent child Browse files
Show More
@@ -7,7 +7,6 b''
7
7
8 from __future__ import absolute_import
8 from __future__ import absolute_import
9
9
10 import array
11 import struct
10 import struct
12
11
13 from .node import (
12 from .node import (
@@ -23,7 +22,6 b' from . import ('
23 util,
22 util,
24 )
23 )
25
24
26 array = array.array
27 calcsize = struct.calcsize
25 calcsize = struct.calcsize
28 pack = struct.pack
26 pack = struct.pack
29 unpack = struct.unpack
27 unpack = struct.unpack
@@ -12,7 +12,6 b''
12
12
13 from __future__ import absolute_import
13 from __future__ import absolute_import
14
14
15 import array
16 import errno
15 import errno
17
16
18 from .node import (
17 from .node import (
@@ -28,8 +27,6 b' from . import ('
28 util,
27 util,
29 )
28 )
30
29
31 array = array.array
32
33 # Tags computation can be expensive and caches exist to make it fast in
30 # Tags computation can be expensive and caches exist to make it fast in
34 # the common case.
31 # the common case.
35 #
32 #
General Comments 0
You need to be logged in to leave comments. Login now