# HG changeset patch # User Yuya Nishihara # Date 1489344422 25200 # Node ID 37acdf027ae2575e7e280c97889a80f1dbd20e98 # Parent 73b3bee8febe9cf96de83e1335957a1f59e3c8c6 py3: drop unused aliases to array.array which are replaced with bytearray diff -r 73b3bee8febe -r 37acdf027ae2 mercurial/branchmap.py --- a/mercurial/branchmap.py Mon Mar 13 00:55:14 2017 +0530 +++ b/mercurial/branchmap.py Sun Mar 12 11:47:02 2017 -0700 @@ -7,7 +7,6 @@ from __future__ import absolute_import -import array import struct from .node import ( @@ -23,7 +22,6 @@ util, ) -array = array.array calcsize = struct.calcsize pack = struct.pack unpack = struct.unpack diff -r 73b3bee8febe -r 37acdf027ae2 mercurial/tags.py --- a/mercurial/tags.py Mon Mar 13 00:55:14 2017 +0530 +++ b/mercurial/tags.py Sun Mar 12 11:47:02 2017 -0700 @@ -12,7 +12,6 @@ from __future__ import absolute_import -import array import errno from .node import ( @@ -28,8 +27,6 @@ util, ) -array = array.array - # Tags computation can be expensive and caches exist to make it fast in # the common case. #