[Python-checkins] r68807 - python/trunk/Modules/_fileio.c

benjamin.peterson python-checkins at python.org
Tue Jan 20 15:31:08 CET 2009


Author: benjamin.peterson
Date: Tue Jan 20 15:31:08 2009
New Revision: 68807

Log:
backport r68802 (bugfix)

Modified:
   python/trunk/Modules/_fileio.c

Modified: python/trunk/Modules/_fileio.c
==============================================================================
--- python/trunk/Modules/_fileio.c	(original)
+++ python/trunk/Modules/_fileio.c	Tue Jan 20 15:31:08 2009
@@ -566,7 +566,7 @@
 #if SEEK_CUR != 1
 	case 1: whence = SEEK_CUR; break;
 #endif
-#if SEEL_END != 2
+#if SEEK_END != 2
 	case 2: whence = SEEK_END; break;
 #endif
 	}


More information about the Python-checkins mailing list