Update of /cvsroot/py-howto/pyhowto
In directory sc8-pr-cvs1:/tmp/cvs-serv32223
Modified Files:
curses.tex
Log Message:
Mention version dependency; change case of section title
Index: curses.tex
===================================================================
RCS file: /cvsroot/py-howto/pyhowto/curses.tex,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** curses.tex 18 Nov 2002 14:15:01 -0000 1.18
--- curses.tex 18 Nov 2002 14:19:09 -0000 1.19
***************
*** 13,18 ****
\begin{abstract}
\noindent
! This document describes how to write text-mode programs with Python,
! using the curses extension module to control the display.
\end{abstract}
--- 13,18 ----
\begin{abstract}
\noindent
! This document describes how to write text-mode programs with Python 2.x,
! using the \module{curses} extension module to control the display.
\end{abstract}
***************
*** 77,81 ****
you the basic ideas.
! \section{Starting and ending a curses Application}
Before doing anything, curses must be initialized. This is done by
--- 77,81 ----
you the basic ideas.
! \section{Starting and ending a curses application}
Before doing anything, curses must be initialized. This is done by
|