parsers: remove unused dependency on util
authorDrew Gottlieb <drgott@google.com>
Mon, 06 Apr 2015 13:59:36 -0700
changeset 24634 4ece2847cf4c
parent 24633 2f8f7cc6a53b
child 24635 21e1ece30f8c
parsers: remove unused dependency on util Parsers.py had a reference to util.sha1 which was unused. This commit removes this reference as well as the unused import of util to simplify the dependency graph. This is important for the next commit which actually relocates part of a module to eliminate a cycle.
mercurial/pure/parsers.py
--- a/mercurial/pure/parsers.py	Mon Apr 06 17:03:35 2015 -0700
+++ b/mercurial/pure/parsers.py	Mon Apr 06 13:59:36 2015 -0700
@@ -6,14 +6,12 @@
 # GNU General Public License version 2 or any later version.
 
 from mercurial.node import nullid
-from mercurial import util
 import struct, zlib, cStringIO
 
 _pack = struct.pack
 _unpack = struct.unpack
 _compress = zlib.compress
 _decompress = zlib.decompress
-_sha = util.sha1
 
 # Some code below makes tuples directly because it's more convenient. However,
 # code outside this module should always use dirstatetuple.