[Python-checkins] r76020 - in python/branches/py3k: Modules/termios.c

gregory.p.smith python-checkins at python.org
Sun Nov 1 20:24:18 CET 2009


Author: gregory.p.smith
Date: Sun Nov  1 20:24:18 2009
New Revision: 76020

Log:
Merged revisions 75999 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r75999 | gregory.p.smith | 2009-10-31 14:23:39 -0700 (Sat, 31 Oct 2009) | 2 lines
  
  Define TCSASOFT if the flag exists.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Modules/termios.c

Modified: python/branches/py3k/Modules/termios.c
==============================================================================
--- python/branches/py3k/Modules/termios.c	(original)
+++ python/branches/py3k/Modules/termios.c	Sun Nov  1 20:24:18 2009
@@ -355,6 +355,9 @@
 	{"TCSANOW", TCSANOW},
 	{"TCSADRAIN", TCSADRAIN},
 	{"TCSAFLUSH", TCSAFLUSH},
+#ifdef TCSASOFT
+	{"TCSASOFT", TCSASOFT},
+#endif
 
 	/* tcflush() constants */
 	{"TCIFLUSH", TCIFLUSH},


More information about the Python-checkins mailing list