[Python-checkins] python/dist/src/Doc/lib libshlex.tex,1.14,1.15

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 17 Apr 2003 16:09:10 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv8654/Doc/lib

Modified Files:
	libshlex.tex 
Log Message:
Use True in a few more places.
Use isinstance(somestring, basestring) instead of type() as per PEP 8


Index: libshlex.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libshlex.tex,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** libshlex.tex	17 Apr 2003 21:49:04 -0000	1.14
--- libshlex.tex	17 Apr 2003 23:09:04 -0000	1.15
***************
*** 178,182 ****
  
  \begin{memberdesc}{whitespace_split}
! If true, tokens will only be split in whitespaces. This is useful, for
  example, for parsing command lines with \class{shlex}, getting tokens
  in a similar way to shell arguments.
--- 178,182 ----
  
  \begin{memberdesc}{whitespace_split}
! If \code{True}, tokens will only be split in whitespaces. This is useful, for
  example, for parsing command lines with \class{shlex}, getting tokens
  in a similar way to shell arguments.