[Python-checkins] CVS: python/dist/src/Doc/lib libcmd.tex,1.7,1.8

Eric S. Raymond esr@users.sourceforge.net
Sat, 23 Jun 2001 07:42:45 -0700


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

Modified Files:
	libcmd.tex 
Log Message:
Correct erroneous description of precmd.


Index: libcmd.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcmd.tex,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** libcmd.tex	2001/03/24 19:17:35	1.7
--- libcmd.tex	2001/06/23 14:42:43	1.8
***************
*** 74,78 ****
  
  \begin{methoddesc}{precmd}{}
! Hook method executed just before the input prompt is issued.  This
  method is a stub in \class{Cmd}; it exists to be overridden by
  subclasses.
--- 74,79 ----
  
  \begin{methoddesc}{precmd}{}
! Hook method executed just before the command line is interpreted, but
! after the input prompt is generated and issued.  This
  method is a stub in \class{Cmd}; it exists to be overridden by
  subclasses.
***************
*** 143,146 ****
  \function{raw_input()} to display a prompt and read the next command;
  if false, \function{sys.stdout.write()} and
! \function{sys.stdin.readline()} are used.
  \end{memberdesc}
--- 144,150 ----
  \function{raw_input()} to display a prompt and read the next command;
  if false, \function{sys.stdout.write()} and
! \function{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}