commit | 54e54c6877329e105406c48490f218faff59db39 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Sep 04 19:14:14 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Sep 04 19:14:14 2001 +0000 |
tree | 6bbdf1f6efaa2253af424f59dc9564a5458d6739 | |
parent | b8f22749853cf79bfbe3709309e67d1a448f4cab [diff] [blame] |
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.
diff --git a/Lib/quopri.py b/Lib/quopri.py index 575fcd1..f668abf 100755 --- a/Lib/quopri.py +++ b/Lib/quopri.py
@@ -27,7 +27,7 @@ def quote(c): """Quote a single character.""" i = ord(c) - return ESCAPE + HEX[i/16] + HEX[i%16] + return ESCAPE + HEX[i//16] + HEX[i%16]