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

antoine.pitrou python-checkins at python.org
Tue Jan 20 12:42:11 CET 2009


Author: antoine.pitrou
Date: Tue Jan 20 12:42:11 2009
New Revision: 68802

Log:
Fix typo



Modified:
   python/branches/py3k/Modules/_fileio.c

Modified: python/branches/py3k/Modules/_fileio.c
==============================================================================
--- python/branches/py3k/Modules/_fileio.c	(original)
+++ python/branches/py3k/Modules/_fileio.c	Tue Jan 20 12:42:11 2009
@@ -591,7 +591,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