[Python-checkins] python/dist/src/Doc/lib libsocksvr.tex,1.17,1.18

montanaro at users.sourceforge.net montanaro at users.sourceforge.net
Wed Jul 21 04:47:13 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28852

Modified Files:
	libsocksvr.tex 
Log Message:
fix typo, highlight True/False correctly


Index: libsocksvr.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsocksvr.tex,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** libsocksvr.tex	22 Nov 2002 14:29:42 -0000	1.17
--- libsocksvr.tex	21 Jul 2004 02:47:10 -0000	1.18
***************
*** 107,111 ****
  \begin{datadesc}{allow_reuse_address}
  Whether the server will allow the reuse of an address. This defaults
! to \code{False}, and can be set in subclasses to change the policy.
  \end{datadesc}
  
--- 107,111 ----
  \begin{datadesc}{allow_reuse_address}
  Whether the server will allow the reuse of an address. This defaults
! to \constant{False}, and can be set in subclasses to change the policy.
  \end{datadesc}
  
***************
*** 171,178 ****
  
  \begin{funcdesc}{verify_request}{request, client_address}
! Must return a Boolean value; if the value is true, the request will be
! processed, and if it's false, the request will be denied.
  This function can be overridden to implement access controls for a server.
! The default implementation always return true.
  \end{funcdesc}
  
--- 171,178 ----
  
  \begin{funcdesc}{verify_request}{request, client_address}
! Must return a Boolean value; if the value is \constant{True}, the request will be
! processed, and if it's \constant{False}, the request will be denied.
  This function can be overridden to implement access controls for a server.
! The default implementation always returns \constant{True}.
  \end{funcdesc}
  



More information about the Python-checkins mailing list