[Python-checkins] commit of r41872 - python/branches/ssize_t/Modules/cStringIO.c

martin.v.loewis python-checkins at python.org
Mon Jan 2 17:35:52 CET 2006


Author: martin.v.loewis
Date: Mon Jan  2 17:35:52 2006
New Revision: 41872

Modified:
   python/branches/ssize_t/Modules/cStringIO.c
Log:
Revert bogus print statement.


Modified: python/branches/ssize_t/Modules/cStringIO.c
==============================================================================
--- python/branches/ssize_t/Modules/cStringIO.c	(original)
+++ python/branches/ssize_t/Modules/cStringIO.c	Mon Jan  2 17:35:52 2006
@@ -333,8 +333,6 @@
         UNLESS (PyArg_ParseTuple(args, "n|i:seek", &position, &mode)) 
                 return NULL;
 
-	printf("Seeking to %d\n",(int)position);
-
         if (mode == 2) {
                 position += self->string_size;
         }


More information about the Python-checkins mailing list