[Python-checkins] CVS: python/dist/src/Modules posixmodule.c,2.174,2.175

Thomas Wouters python-dev@python.org
Tue, 3 Oct 2000 09:54:29 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv8699/Modules

Modified Files:
	posixmodule.c 
Log Message:

Clarify that isatty is only guaranteed to return true for slave ends of
terminals, not the master end (though it does, on most systems.)



Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.174
retrieving revision 2.175
diff -C2 -r2.174 -r2.175
*** posixmodule.c	2000/09/25 13:22:00	2.174
--- posixmodule.c	2000/10/03 16:54:24	2.175
***************
*** 3469,3473 ****
  "isatty(fd) -> Boolean\n\
  Return true if the file descriptor 'fd' is an open file descriptor\n\
! connected to a terminal.";
  
  static PyObject *
--- 3469,3473 ----
  "isatty(fd) -> Boolean\n\
  Return true if the file descriptor 'fd' is an open file descriptor\n\
! connected to the slave end of a terminal.";
  
  static PyObject *