[Zope-Checkins] CVS: Zope/lib/python/OFS/tests - testRanges.py:1.4

Martijn Pieters mj@zope.com
Fri, 5 Oct 2001 17:22:58 -0400


Update of /cvs-repository/Zope/lib/python/OFS/tests
In directory cvs.zope.org:/tmp/cvs-serv12092/lib/python/OFS/tests

Modified Files:
	testRanges.py 
Log Message:
Expanded MultiFile boundary bug comment with remark about fix in Py 2.2.


=== Zope/lib/python/OFS/tests/testRanges.py 1.3 => 1.4 ===
             body = part.fp.read()
             # Whotcha! Bug in MultiFile; the CRLF that is part of the boundary
-            # is returned as part of the body.
+            # is returned as part of the body. Note that this bug is resolved
+            # in Python 2.2.
             if body[-2:] == '\r\n':
                 body = body[:-2]