[KoCo-CVS] [Commit] cjkcodecs/tests test_multibytecodec_support.py
Brought to you by:
perky
|
From: Hye-Shik C. <pe...@us...> - 2003-07-19 10:49:03
|
perky 03/07/19 03:49:00
Modified: tests test_multibytecodec_support.py
Log:
UTF-8 codec isn't removed.
Revision Changes Path
1.10 +1 -2 cjkcodecs/tests/test_multibytecodec_support.py
Index: test_multibytecodec_support.py
===================================================================
RCS file: /cvsroot/koco/cjkcodecs/tests/test_multibytecodec_support.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- test_multibytecodec_support.py 19 Jul 2003 10:46:09 -0000 1.9
+++ test_multibytecodec_support.py 19 Jul 2003 10:49:00 -0000 1.10
@@ -27,7 +27,7 @@
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
-# $Id: test_multibytecodec_support.py,v 1.9 2003/07/19 10:46:09 perky Exp $
+# $Id: test_multibytecodec_support.py,v 1.10 2003/07/19 10:49:00 perky Exp $
#
import sys, codecs, os.path
@@ -145,7 +145,6 @@
ostream = self.writer(StringIO())
func = getattr(istream, name)
while 1:
- print name, sizehint
if sizehint is not None:
data = func(sizehint)
else:
|