summaryrefslogtreecommitdiff
path: root/Lib/binhex.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-09-04 19:14:14 +0000
committerGuido van Rossum <guido@python.org>2001-09-04 19:14:14 +0000
commit54e54c6877329e105406c48490f218faff59db39 (patch)
tree6bbdf1f6efaa2253af424f59dc9564a5458d6739 /Lib/binhex.py
parentb8f22749853cf79bfbe3709309e67d1a448f4cab (diff)
downloadcpython-git-54e54c6877329e105406c48490f218faff59db39.tar.gz
The first batch of changes recommended by the fixdiv tool. These are
mostly changes of / operators into //. Once or twice I did more or less than recommended.
Diffstat (limited to 'Lib/binhex.py')
-rw-r--r--Lib/binhex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/binhex.py b/Lib/binhex.py
index 686f8d9a8b..5700659bf7 100644
--- a/Lib/binhex.py
+++ b/Lib/binhex.py
@@ -128,7 +128,7 @@ class _Hqxcoderengine:
def write(self, data):
self.data = self.data + data
datalen = len(self.data)
- todo = (datalen/3)*3
+ todo = (datalen//3)*3
data = self.data[:todo]
self.data = self.data[todo:]
if not data:
@@ -292,7 +292,7 @@ class _Hqxdecoderengine:
# much to decode: there may be newlines in the incoming data.
while wtd > 0:
if self.eof: return decdata
- wtd = ((wtd+2)/3)*4
+ wtd = ((wtd+2)//3)*4
data = self.ifp.read(wtd)
#
# Next problem: there may not be a complete number of