diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-03-06 23:41:58 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-03-06 23:41:58 (GMT) |
commit | 2b4821347f00b01746562d58390a213924f2b102 (patch) | |
tree | 7460c2de793c43563516c2c77db72e413b687aea /Lib/email/Header.py | |
parent | fa1bf1c518528ae8ec9b24ce452edc930ec80a7d (diff) | |
download | cpython-2b4821347f00b01746562d58390a213924f2b102.zip cpython-2b4821347f00b01746562d58390a213924f2b102.tar.gz cpython-2b4821347f00b01746562d58390a213924f2b102.tar.bz2 |
Repaired a misleading comment Barry inherited from me.
Diffstat (limited to 'Lib/email/Header.py')
-rw-r--r-- | Lib/email/Header.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/Header.py b/Lib/email/Header.py index 83fe0d5..cef734c 100644 --- a/Lib/email/Header.py +++ b/Lib/email/Header.py @@ -496,7 +496,7 @@ def _binsplit(splittable, charset, maxlinelen): # m is acceptable, so is a new lower bound. i = m else: - # m is not acceptable, so final i must be < j. + # m is not acceptable, so final i must be < m. j = m - 1 # i == j. Invariant #1 implies that splittable[:i] fits, and # invariant #2 implies that splittable[:i+1] does not fit, so i |