[Python-checkins] python/dist/src/Doc/lib libcurses.tex,1.47,1.48

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Tue Oct 19 21:39:05 CEST 2004


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

Modified Files:
	libcurses.tex 
Log Message:
Typo fixes, and a minor edit to clarify a sentence

Index: libcurses.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcurses.tex,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- libcurses.tex	8 Oct 2004 18:48:43 -0000	1.47
+++ libcurses.tex	19 Oct 2004 19:39:02 -0000	1.48
@@ -1275,7 +1275,7 @@
 Draw a rectangle.  The first argument must be a window object; the
 remaining arguments are coordinates relative to that window.  The
 second and third arguments are the y and x coordinates of the upper
-left hand corner of the rectangle To be drawn; the fourth and fifth
+left hand corner of the rectangle to be drawn; the fourth and fifth
 arguments are the y and x coordinates of the lower right hand corner.
 The rectangle will be drawn using VT100/IBM PC forms characters on
 terminals that make this possible (including xterm and most other
@@ -1292,7 +1292,7 @@
 Return a textbox widget object.  The \var{win} argument should be a
 curses \class{WindowObject} in which the textbox is to be contained.
 The edit cursor of the textbox is initially located at the upper left
-hand corner of the containin window, with coordinates \code{(0, 0)}.
+hand corner of the containing window, with coordinates \code{(0, 0)}.
 The instance's \member{stripspaces} flag is initially on.
 \end{classdesc}
 
@@ -1358,7 +1358,7 @@
 the window.  When it is on, trailing blanks on each line are ignored;
 any cursor motion that would land the cursor on a trailing blank goes
 to the end of that line instead, and trailing blanks are stripped when
-the window contents is gathered.
+the window contents are gathered.
 \end{memberdesc}
 
 
@@ -1375,7 +1375,7 @@
 another function which should be the rest of your curses-using
 application.  If the application raises an exception,
 \function{wrapper()} will restore the terminal to a sane state before
-passing it further up the stack and generating a traceback.
+re-raising the exception and generating a traceback.
 
 \begin{funcdesc}{wrapper}{func, \moreargs}
 Wrapper function that initializes curses and calls another function,



More information about the Python-checkins mailing list