From: Neal Norwitz Date: Mon, 7 Jun 2004 03:45:56 +0000 (+0000) Subject: Remove a useless operation, setting name to itself X-Git-Tag: v2.4a1~234 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c75f89187927dff4f66f9bd9da183f9e1be9dde9;p=thirdparty%2FPython%2Fcpython.git Remove a useless operation, setting name to itself --- diff --git a/Lib/binhex.py b/Lib/binhex.py index 9735f2eda3aa..16985fb16694 100644 --- a/Lib/binhex.py +++ b/Lib/binhex.py @@ -197,7 +197,6 @@ class BinHex: self.state = _DID_HEADER def _writeinfo(self, name, finfo): - name = name nl = len(name) if nl > 63: raise Error, 'Filename too long'