py3: drop unused aliases to array.array which are replaced with bytearray

This commit is contained in:
Yuya Nishihara 2017-03-12 11:47:02 -07:00
parent a0c31269e8
commit bec7ade60c
2 changed files with 0 additions and 5 deletions

View File

@ -7,7 +7,6 @@
from __future__ import absolute_import
import array
import struct
from .node import (
@ -23,7 +22,6 @@ from . import (
util,
)
array = array.array
calcsize = struct.calcsize
pack = struct.pack
unpack = struct.unpack

View File

@ -12,7 +12,6 @@
from __future__ import absolute_import
import array
import errno
from .node import (
@ -28,8 +27,6 @@ from . import (
util,
)
array = array.array
# Tags computation can be expensive and caches exist to make it fast in
# the common case.
#