diff options
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref.tex | 21 | ||||
-rw-r--r-- | Doc/ref/ref1.tex | 6 | ||||
-rw-r--r-- | Doc/ref/ref3.tex | 33 |
3 files changed, 30 insertions, 30 deletions
diff --git a/Doc/ref/ref.tex b/Doc/ref/ref.tex index 93acc11..b0636fb 100644 --- a/Doc/ref/ref.tex +++ b/Doc/ref/ref.tex @@ -32,15 +32,18 @@ extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed. 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 \emph{Python Library -Reference}. For an informal introduction to the language, see the -\emph{Python Tutorial}. For \C{} or \Cpp{} programmers, two additional -manuals exist: \emph{Extending and Embedding the Python Interpreter} -describes the high-level picture of how to write a Python extension -module, and the \emph{Python/C API Reference Manual} describes the -interfaces available to C/C++ programmers in detail. +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 +\citetitle[../lib/lib.html]{Python Library Reference}. For an +informal introduction to the language, see the +\citetitle[../tut/tut.html]{Python Tutorial}. For C or +\Cpp{} programmers, two additional manuals exist: +\citetitle[../ext/ext.html]{Extending and Embedding the Python +Interpreter} describes the high-level picture of how to write a Python +extension module, and the \citetitle[../api/api.html]{Python/C API +Reference Manual} describes the interfaces available to +C/\Cpp{} programmers in detail. \end{abstract} diff --git a/Doc/ref/ref1.tex b/Doc/ref/ref1.tex index 23bc05d..c35f157 100644 --- a/Doc/ref/ref1.tex +++ b/Doc/ref/ref1.tex @@ -29,9 +29,9 @@ text. Every Python implementation comes with a number of built-in and standard modules. These are not documented here, but in the separate -\emph{Python Library Reference} document. A few built-in modules are -mentioned when they interact in a significant way with the language -definition. +\citetitle[../lib/lib.html]{Python Library Reference} document. A few +built-in modules are mentioned when they interact in a significant way +with the language definition. \section{Notation\label{notation}} diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 503b03b..cb861cd 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -629,28 +629,25 @@ dictionary; \member{__class__} is the instance's class. \ttindex{__class__}} \item[Files] -A file object represents an open file. File objects are created by the -\function{open()} built-in function, and also by -\function{os.popen()}, \function{os.fdopen()}, and the -\method{makefile()} method of socket objects (and perhaps by other -functions or methods provided by extension modules). The objects -\code{sys.stdin}, \code{sys.stdout} and \code{sys.stderr} are -initialized to file objects corresponding to the interpreter's -standard input, output and error streams. See the \emph{Python -Library Reference} for complete documentation of file objects. -\obindex{file} -\indexii{C}{language} -\index{stdio} -\bifuncindex{open} -\withsubitem{(in module os)}{\ttindex{popen()}} -\withsubitem{(socket method)}{\ttindex{makefile()}} +A file\obindex{file} object represents an open file. File objects are +created by the \function{open()}\bifuncindex{open} built-in function, +and also by +\withsubitem{(in module os)}{\ttindex{popen()}}\function{os.popen()}, +\function{os.fdopen()}, and the +\method{makefile()}\withsubitem{(socket method)}{\ttindex{makefile()}} +method of socket objects (and perhaps by other functions or methods +provided by extension modules). The objects +\ttindex{sys.stdin}\code{sys.stdin}, +\ttindex{sys.stdout}\code{sys.stdout} and +\ttindex{sys.stderr}\code{sys.stderr} are initialized to file objects +corresponding to the interpreter's standard\index{stdio} input, output +and error streams. See the \citetitle[../lib/lib.html]{Python Library +Reference} for complete documentation of file objects. \withsubitem{(in module sys)}{ \ttindex{stdin} \ttindex{stdout} \ttindex{stderr}} -\ttindex{sys.stdin} -\ttindex{sys.stdout} -\ttindex{sys.stderr} + \item[Internal types] A few types used internally by the interpreter are exposed to the user. |