[Python-checkins] python/dist/src/Modules posixmodule.c, 2.300.8.5, 2.300.8.6

nnorwitz at users.sourceforge.net nnorwitz at users.sourceforge.net
Sun Feb 15 20:30:52 EST 2004


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

Modified Files:
      Tag: release23-maint
	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.300.8.5
retrieving revision 2.300.8.6
diff -C2 -d -r2.300.8.5 -r2.300.8.6
*** posixmodule.c	3 Dec 2003 01:21:01 -0000	2.300.8.5
--- posixmodule.c	16 Feb 2004 01:30:49 -0000	2.300.8.6
***************
*** 4459,4463 ****
  #ifdef HAVE_SETREUID
  PyDoc_STRVAR(posix_setreuid__doc__,
! "seteuid(ruid, euid)\n\n\
  Set the current process's real and effective user ids.");
  
--- 4459,4463 ----
  #ifdef HAVE_SETREUID
  PyDoc_STRVAR(posix_setreuid__doc__,
! "setreuid(ruid, euid)\n\n\
  Set the current process's real and effective user ids.");
  
***************
*** 4479,4483 ****
  #ifdef HAVE_SETREGID
  PyDoc_STRVAR(posix_setregid__doc__,
! "setegid(rgid, egid)\n\n\
  Set the current process's real and effective group ids.");
  
--- 4479,4483 ----
  #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