summaryrefslogtreecommitdiffstats
path: root/Doc/ref/ref.tex
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-10-22 20:00:02 (GMT)
committerGuido van Rossum <guido@python.org>1996-10-22 20:00:02 (GMT)
commit1f17543ee7deba553d560fb6e1fb616c04079ec0 (patch)
tree7e7be752ff0ea5a0b44593c8f123ae6ee9559b8c /Doc/ref/ref.tex
parent6a05f951cd8a1acafaf77e248ec60edd1ce6c08d (diff)
downloadcpython-1f17543ee7deba553d560fb6e1fb616c04079ec0.zip
cpython-1f17543ee7deba553d560fb6e1fb616c04079ec0.tar.gz
cpython-1f17543ee7deba553d560fb6e1fb616c04079ec0.tar.bz2
Removed LaTeX version of reference manual. Added ref/ref.ps.
Diffstat (limited to 'Doc/ref/ref.tex')
-rw-r--r--Doc/ref/ref.tex68
1 files changed, 0 insertions, 68 deletions
diff --git a/Doc/ref/ref.tex b/Doc/ref/ref.tex
deleted file mode 100644
index e63fa7c..0000000
--- a/Doc/ref/ref.tex
+++ /dev/null
@@ -1,68 +0,0 @@
-\documentstyle[twoside,11pt,myformat]{report}
-
-\title{Python Reference Manual}
-
-\input{boilerplate}
-
-% Tell \index to actually write the .idx file
-\makeindex
-
-\begin{document}
-
-\pagenumbering{roman}
-
-\maketitle
-
-\input{copyright}
-
-\begin{abstract}
-
-\noindent
-Python is a simple, yet powerful, interpreted programming language
-that bridges the gap between C and shell programming, and is thus
-ideally suited for ``throw-away programming'' and rapid prototyping.
-Its syntax is put together from constructs borrowed from a variety of
-other languages; most prominent are influences from ABC, C, Modula-3
-and Icon.
-
-The Python interpreter is easily extended with new functions and data
-types implemented in C. Python is also suitable as an extension
-language for highly customizable C applications such as editors or
-window managers.
-
-Python is available for various operating systems, amongst which
-several flavors of {\UNIX} (including Linux), the Apple Macintosh O.S.,
-MS-DOS, MS-Windows 3.1, Windows NT, and OS/2.
-
-This reference manual describes the syntax and ``core semantics'' of
-the language. It is terse, but attempts to be exact and complete.
-The semantics of non-essential built-in object types and of the
-built-in functions and modules are described in the {\em Python
-Library Reference}. For an informal introduction to the language, see
-the {\em Python Tutorial}.
-
-\end{abstract}
-
-\pagebreak
-
-{
-\parskip = 0mm
-\tableofcontents
-}
-
-\pagebreak
-
-\pagenumbering{arabic}
-
-\include{ref1} % Introduction
-\include{ref2} % Lexical analysis
-\include{ref3} % Data model
-\include{ref4} % Execution model
-\include{ref5} % Expressions and conditions
-\include{ref6} % Simple statements
-\include{ref7} % Compound statements
-\include{ref8} % Top-level components
-
-\input{ref.ind}
-
-\end{document}