diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-04-17 23:09:08 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-04-17 23:09:08 (GMT) |
commit | 10cf21802d2417c794630f7642a128b757b0a5cb (patch) | |
tree | fc36662fedae05e14e54fa6184f4862b8130e841 /Doc/lib/libshlex.tex | |
parent | a6bdf2aef6081cf7b2f9d209a4e42a92f65a36db (diff) | |
download | cpython-10cf21802d2417c794630f7642a128b757b0a5cb.zip cpython-10cf21802d2417c794630f7642a128b757b0a5cb.tar.gz cpython-10cf21802d2417c794630f7642a128b757b0a5cb.tar.bz2 |
Use True in a few more places.
Use isinstance(somestring, basestring) instead of type() as per PEP 8
Diffstat (limited to 'Doc/lib/libshlex.tex')
-rw-r--r-- | Doc/lib/libshlex.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libshlex.tex b/Doc/lib/libshlex.tex index a79e954..9ebe16b 100644 --- a/Doc/lib/libshlex.tex +++ b/Doc/lib/libshlex.tex @@ -177,7 +177,7 @@ includes just \character{"} by default. \end{memberdesc} \begin{memberdesc}{whitespace_split} -If true, tokens will only be split in whitespaces. This is useful, for +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. \versionadded{2.3} |