@@ -302,14 +302,14 @@ \subsection{Sequence Types \label{typesseq}}
302302There are three sequence types: strings, lists and tuples.
303303
304304Strings literals are written in single or double quotes:
305- \code {'xyzzy'}, \code {"frobozz"}. See Chapter 2 of the \emph { Python
306- Reference Manual } for more about string literals. Lists are
307- constructed with square brackets, separating items with commas:
308- \code {[a, b, c]}. Tuples are constructed by the comma operator (not
309- within square brackets), with or without enclosing parentheses, but an
310- empty tuple must have the enclosing parentheses, e.g.,
311- \code {a, b, c} or \code {()}. A single item tuple must have a trailing
312- comma, e.g., \code {(d,)}.
305+ \code {'xyzzy'}, \code {"frobozz"}. See Chapter 2 of the
306+ \citetitle [../ref/ref.html]{ Python Reference Manual } for more about
307+ string literals. Lists are constructed with square brackets,
308+ separating items with commas: \code {[a, b, c]}. Tuples are
309+ constructed by the comma operator (not within square brackets), with
310+ or without enclosing parentheses, but an empty tuple must have the
311+ enclosing parentheses, e.g., \code {a, b, c} or \code {()}. A single
312+ item tuple must have a trailing comma, e.g., \code {(d,)}.
313313\indexii {sequence}{types}
314314\indexii {string}{type}
315315\indexii {tuple}{type}
@@ -629,7 +629,8 @@ \subsubsection{Modules \label{typesmodules}}
629629\subsubsection {Classes and Class Instances \label {typesobjects } }
630630\nodename {Classes and Instances}
631631
632- See Chapters 3 and 7 of the \emph {Python Reference Manual } for these.
632+ See Chapters 3 and 7 of the \citetitle [../ref/ref.html]{Python
633+ Reference Manual } for these.
633634
634635
635636\subsubsection {Functions \label {typesfunctions } }
@@ -667,7 +668,8 @@ \subsubsection{Methods \label{typesmethods}}
667668calling \code {\var {m}.im_func(\var {m}.im_self, \var {arg-1},
668669\var {arg-2}, \textrm {\ldots }, \var {arg-n})}.
669670
670- See the \emph {Python Reference Manual } for more information.
671+ See the \citetitle [../ref/ref.html]{Python Reference Manual } for more
672+ information.
671673
672674
673675\subsubsection {Code Objects \label {bltin-code-objects } }
@@ -689,7 +691,8 @@ \subsubsection{Code Objects \label{bltin-code-objects}}
689691\stindex {exec}
690692\bifuncindex {eval}
691693
692- See the \emph {Python Reference Manual } for more information.
694+ See the \citetitle [../ref/ref.html]{Python Reference Manual } for more
695+ information.
693696
694697
695698\subsubsection {Type Objects \label {bltin-type-objects } }
@@ -715,9 +718,10 @@ \subsubsection{The Null Object \label{bltin-null-object}}
715718
716719\subsubsection {The Ellipsis Object \label {bltin-ellipsis-object } }
717720
718- This object is used by extended slice notation (see the \emph {Python
719- Reference Manual }). It supports no special operations. There is
720- exactly one ellipsis object, named \code {Ellipsis} (a built-in name).
721+ This object is used by extended slice notation (see the
722+ \citetitle [../ref/ref.html]{Python Reference Manual }). It supports no
723+ special operations. There is exactly one ellipsis object, named
724+ \constant {Ellipsis} (a built-in name).
721725
722726It is written as \code {Ellipsis}.
723727
@@ -868,9 +872,9 @@ \subsubsection{File Objects\obindex{file}
868872
869873\subsubsection {Internal Objects \label {typesinternal } }
870874
871- See the \emph {Python Reference Manual } for this information. It
872- describes code objects, stack frame objects, traceback objects, and
873- slice objects.
875+ See the \citetitle [../ref/ref.html] {Python Reference Manual } for this
876+ information. It describes code objects, stack frame objects,
877+ traceback objects, and slice objects.
874878
875879
876880\subsection {Special Attributes \label {specialattrs } }
0 commit comments