mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
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.
This commit is contained in:
parent
b8f2274985
commit
54e54c6877
19 changed files with 38 additions and 38 deletions
|
@ -9,7 +9,7 @@ import binascii
|
|||
__all__ = ["encode","decode","encodestring","decodestring"]
|
||||
|
||||
MAXLINESIZE = 76 # Excluding the CRLF
|
||||
MAXBINSIZE = (MAXLINESIZE/4)*3
|
||||
MAXBINSIZE = (MAXLINESIZE//4)*3
|
||||
|
||||
def encode(input, output):
|
||||
"""Encode a file."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue