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

Eric S. Raymond python-dev@python.org
Tue, 11 Jul 2000 19:56:17 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv6745

Modified Files:
	libcmd.tex 
Log Message:
Resynchronize the TeX docs with (a) the module docstring, and (b) my recent
fix to the code to make it behave like the module docstring. 


Index: libcmd.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcmd.tex,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** libcmd.tex	1998/08/10 19:41:40	1.4
--- libcmd.tex	2000/07/12 02:56:15	1.5
***************
*** 44,50 ****
  An interpreter instance will recognize a command name \samp{foo} if
  and only if it has a method \method{do_foo()}.  As a special case,
! a line containing only the character \character{?} is dispatched to
  the method \method{do_help()}.  As another special case, a line
! containing only the character \character{!} is dispatched to the
  method \method{do_shell} (if such a method is defined).
  
--- 44,50 ----
  An interpreter instance will recognize a command name \samp{foo} if
  and only if it has a method \method{do_foo()}.  As a special case,
! a line beginning with the character \character{?} is dispatched to
  the method \method{do_help()}.  As another special case, a line
! beginning with the character \character{!} is dispatched to the
  method \method{do_shell} (if such a method is defined).