mercurial/util.py
changeset 25211 22f4ce49044d
parent 25210 b58dde1bb32f
child 25245 504ef9c49f4a
--- a/mercurial/util.py	Mon May 18 16:56:04 2015 -0500
+++ b/mercurial/util.py	Mon May 18 23:43:36 2015 -0500
@@ -19,7 +19,7 @@
 import errno, shutil, sys, tempfile, traceback
 import re as remod
 import os, time, datetime, calendar, textwrap, signal, collections
-import imp, socket, urllib, struct
+import imp, socket, urllib
 import gc
 
 if os.name == 'nt':
@@ -232,10 +232,6 @@
 import subprocess
 closefds = os.name == 'posix'
 
-def unpacker(fmt):
-    """create a struct unpacker for the specified format"""
-    return struct.Struct(fmt).unpack
-
 def popen2(cmd, env=None, newlines=False):
     # Setting bufsize to -1 lets the system decide the buffer size.
     # The default for bufsize is 0, meaning unbuffered. This leads to