##// 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 8 from __future__ import absolute_import
9 9
10 import array
11 10 import struct
12 11
13 12 from .node import (
@@ -23,7 +22,6 b' from . import ('
23 22 util,
24 23 )
25 24
26 array = array.array
27 25 calcsize = struct.calcsize
28 26 pack = struct.pack
29 27 unpack = struct.unpack
@@ -12,7 +12,6 b''
12 12
13 13 from __future__ import absolute_import
14 14
15 import array
16 15 import errno
17 16
18 17 from .node import (
@@ -28,8 +27,6 b' from . import ('
28 27 util,
29 28 )
30 29
31 array = array.array
32
33 30 # Tags computation can be expensive and caches exist to make it fast in
34 31 # the common case.
35 32 #
General Comments 0
You need to be logged in to leave comments. Login now