| 1 | \documentclass{howto}
|
|---|
| 2 |
|
|---|
| 3 | \title{Curses Programming with Python}
|
|---|
| 4 |
|
|---|
| 5 | \release{2.01}
|
|---|
| 6 |
|
|---|
| 7 | \author{A.M. Kuchling, Eric S. Raymond}
|
|---|
| 8 | \authoraddress{\email{[email protected]}, \email{[email protected]}}
|
|---|
| 9 |
|
|---|
| 10 | \begin{document}
|
|---|
| 11 | \maketitle
|
|---|
| 12 |
|
|---|
| 13 | \begin{abstract}
|
|---|
| 14 | \noindent
|
|---|
| 15 | This document describes how to write text-mode programs with Python 2.x,
|
|---|
| 16 | using the \module{curses} extension module to control the display.
|
|---|
| 17 |
|
|---|
| 18 | This document is available from the Python HOWTO page at
|
|---|
| 19 | \url{http://www.python.org/doc/howto}.
|
|---|
| 20 | \end{abstract}
|
|---|
| 21 |
|
|---|
|
|---|