[Python-checkins] python/dist/src/Modules posixmodule.c, 2.313, 2.314

nnorwitz at users.sourceforge.net nnorwitz at users.sourceforge.net
Sun Feb 15 20:26:37 EST 2004


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10839/Modules

Modified Files:
	posixmodule.c 
Log Message:
Fix docstrings to mention the correct function

Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.313
retrieving revision 2.314
diff -C2 -d -r2.313 -r2.314
*** posixmodule.c	10 Feb 2004 16:50:18 -0000	2.313
--- posixmodule.c	16 Feb 2004 01:26:34 -0000	2.314
***************
*** 4457,4461 ****
  #ifdef HAVE_SETREUID
  PyDoc_STRVAR(posix_setreuid__doc__,
! "seteuid(ruid, euid)\n\n\
  Set the current process's real and effective user ids.");
  
--- 4457,4461 ----
  #ifdef HAVE_SETREUID
  PyDoc_STRVAR(posix_setreuid__doc__,
! "setreuid(ruid, euid)\n\n\
  Set the current process's real and effective user ids.");
  
***************
*** 4477,4481 ****
  #ifdef HAVE_SETREGID
  PyDoc_STRVAR(posix_setregid__doc__,
! "setegid(rgid, egid)\n\n\
  Set the current process's real and effective group ids.");
  
--- 4477,4481 ----
  #ifdef HAVE_SETREGID
  PyDoc_STRVAR(posix_setregid__doc__,
! "setregid(rgid, egid)\n\n\
  Set the current process's real and effective group ids.");
  




More information about the Python-checkins mailing list