summaryrefslogtreecommitdiff
path: root/Lib/binhex.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2004-06-07 03:45:56 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2004-06-07 03:45:56 +0000
commit139d4105d277e9e6b66ecfc26c490c2d92e72799 (patch)
tree3e1d7d9e0fcd80d3c877f404b701325534f7f078 /Lib/binhex.py
parentfdeba8ee700d4eb3257d8e76bb995b3210e2cd1b (diff)
downloadcpython-139d4105d277e9e6b66ecfc26c490c2d92e72799.tar.gz
Remove a useless operation, setting name to itself
Diffstat (limited to 'Lib/binhex.py')
-rw-r--r--Lib/binhex.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/binhex.py b/Lib/binhex.py
index 9735f2eda3..16985fb166 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'