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

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Wed Dec 31 00:01:25 EST 2003


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

Modified Files:
	libcmd.tex 
Log Message:
general markup improvements


Index: libcmd.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcmd.tex,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** libcmd.tex	6 Feb 2003 05:02:39 -0000	1.14
--- libcmd.tex	31 Dec 2003 05:01:23 -0000	1.15
***************
*** 12,16 ****
  later be wrapped in a more sophisticated interface.
  
! \begin{classdesc}{Cmd}{\optional{completekey},\optional{stdin},\optional{stdout}}
  A \class{Cmd} instance or subclass instance is a line-oriented
  interpreter framework.  There is no good reason to instantiate
--- 12,17 ----
  later be wrapped in a more sophisticated interface.
  
! \begin{classdesc}{Cmd}{\optional{completekey\optional{,
!                        stdin\optional{, stdout}}}}
  A \class{Cmd} instance or subclass instance is a line-oriented
  interpreter framework.  There is no good reason to instantiate
***************
*** 21,25 ****
  The optional argument \var{completekey} is the \refmodule{readline} name
  of a completion key; it defaults to \kbd{Tab}. If \var{completekey} is
! not \code{None} and \module{readline} is available, command completion
  is done automatically.
  
--- 22,26 ----
  The optional argument \var{completekey} is the \refmodule{readline} name
  of a completion key; it defaults to \kbd{Tab}. If \var{completekey} is
! not \constant{None} and \refmodule{readline} is available, command completion
  is done automatically.
  
***************
*** 45,49 ****
  first prompt (this overrides the \member{intro} class member).
  
! If the \module{readline} module is loaded, input will automatically
  inherit \program{bash}-like history-list editing (e.g. \kbd{Control-P}
  scrolls back to the last command, \kbd{Control-N} forward to the next
--- 46,50 ----
  first prompt (this overrides the \member{intro} class member).
  
! If the \refmodule{readline} module is loaded, input will automatically
  inherit \program{bash}-like history-list editing (e.g. \kbd{Control-P}
  scrolls back to the last command, \kbd{Control-N} forward to the next
***************
*** 185,190 ****
  if false, \method{sys.stdout.write()} and
  \method{sys.stdin.readline()} are used. (This means that by
! importing \module{readline}, on systems that support it, the
! interpreter will automatically support Emacs-like line editing 
  and command-history keystrokes.)
  \end{memberdesc}
--- 186,191 ----
  if false, \method{sys.stdout.write()} and
  \method{sys.stdin.readline()} are used. (This means that by
! importing \refmodule{readline}, on systems that support it, the
! interpreter will automatically support \program{Emacs}-like line editing 
  and command-history keystrokes.)
  \end{memberdesc}





More information about the Python-checkins mailing list