[Python-checkins] r75999 - python/trunk/Modules/termios.c

gregory.p.smith python-checkins at python.org
Sat Oct 31 22:23:40 CET 2009


Author: gregory.p.smith
Date: Sat Oct 31 22:23:39 2009
New Revision: 75999

Log:
Define TCSASOFT if the flag exists.


Modified:
   python/trunk/Modules/termios.c

Modified: python/trunk/Modules/termios.c
==============================================================================
--- python/trunk/Modules/termios.c	(original)
+++ python/trunk/Modules/termios.c	Sat Oct 31 22:23:39 2009
@@ -357,6 +357,9 @@
 	{"TCSANOW", TCSANOW},
 	{"TCSADRAIN", TCSADRAIN},
 	{"TCSAFLUSH", TCSAFLUSH},
+#ifdef TCSASOFT
+	{"TCSASOFT", TCSASOFT},
+#endif
 
 	/* tcflush() constants */
 	{"TCIFLUSH", TCIFLUSH},


More information about the Python-checkins mailing list