[Python-3000-checkins] r57086 - python/branches/py3k/Modules/_fileio.c

neal.norwitz python-3000-checkins at python.org
Thu Aug 16 07:19:04 CEST 2007


Author: neal.norwitz
Date: Thu Aug 16 07:18:31 2007
New Revision: 57086

Modified:
   python/branches/py3k/Modules/_fileio.c
Log:
Remove a bogus comment based on the code above.

Modified: python/branches/py3k/Modules/_fileio.c
==============================================================================
--- python/branches/py3k/Modules/_fileio.c	(original)
+++ python/branches/py3k/Modules/_fileio.c	Thu Aug 16 07:18:31 2007
@@ -338,8 +338,6 @@
 		else
 			self->seekable = 1;
 	}
-	/* XXX(nnorwitz): should this return an int rather than a bool,
-	   since seekable could be -1, 0, or 1? */
 	return PyBool_FromLong((long) self->seekable);
 }
 


More information about the Python-3000-checkins mailing list