[Python-checkins] python/dist/src/Doc/lib libreadline.tex, 1.15, 1.16

montanaro at users.sourceforge.net montanaro at users.sourceforge.net
Sun Aug 15 16:32:09 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28578/Doc/lib

Modified Files:
	libreadline.tex 
Log Message:
Add get_history_item and replace_history_item functions to the readline
module.  Closes patch #675551.  My apologies to Michal Vitecek for taking so
long to process this.


Index: libreadline.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libreadline.tex,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** libreadline.tex	24 May 2004 14:20:16 -0000	1.15
--- libreadline.tex	15 Aug 2004 14:32:06 -0000	1.16
***************
*** 72,75 ****
--- 72,85 ----
  \end{funcdesc}
  
+ \begin{funcdesc}{remove_history_item}{pos}
+ Remove history item specified by its position from the history.
+ \versionadded{2.4}
+ \end{funcdesc}
+ 
+ \begin{funcdesc}{replace_history_item}{pos, line}
+ Replace history item specified by its position with the given line.
+ \versionadded{2.4}
+ \end{funcdesc}
+ 
  \begin{funcdesc}{redisplay}{}
  Change what's displayed on the screen to reflect the current contents
***************
*** 128,132 ****
  \end{funcdesc}
  
- 
  \begin{seealso}
    \seemodule{rlcompleter}{Completion of Python identifiers at the
--- 138,141 ----



More information about the Python-checkins mailing list