Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4c8fa42

Browse files
committed
Doc/lib/libfuncs.tex: correct items in itemize
Doc/dist/dist.tex: avoid uncommenting the verbose environment (by the py2texi tool)
1 parent 283b670 commit 4c8fa42

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

Doc/dist/dist.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1444,11 +1444,11 @@ \subsection{Creating RPM packages}
14441444
% \longprogramopt{spec-only}, this gives you an opportunity to customize
14451445
% the \file{.spec} file manually:
14461446
%
1447-
% \begin{verbatim}
1447+
% \ begin{verbatim}
14481448
% > python setup.py bdist_rpm --spec-only
14491449
% # ...edit dist/FooBar-1.0.spec
14501450
% > python setup.py bdist_rpm --spec-file=dist/FooBar-1.0.spec
1451-
% \end{verbatim}
1451+
% \ end{verbatim}
14521452
%
14531453
% (Although a better way to do this is probably to override the standard
14541454
% \command{bdist\_rpm} command with one that writes whatever else you want

Doc/lib/libfuncs.tex

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -806,21 +806,21 @@ \section{Built-in Functions \label{built-in-funcs}}
806806

807807
\begin{itemize}
808808

809-
\item{Python modules' code is recompiled and the module-level code
809+
\item Python modules' code is recompiled and the module-level code
810810
reexecuted, defining a new set of objects which are bound to names in
811811
the module's dictionary. The \code{init} function of extension
812-
modules is not called a second time.}
812+
modules is not called a second time.
813813

814-
\item{As with all other objects in Python the old objects are only
815-
reclaimed after their reference counts drop to zero.}
814+
\item As with all other objects in Python the old objects are only
815+
reclaimed after their reference counts drop to zero.
816816

817-
\item{The names in the module namespace are updated to point to
818-
any new or changed objects.}
817+
\item The names in the module namespace are updated to point to
818+
any new or changed objects.
819819

820-
\item{Other references to the old objects (such as names external
820+
\item Other references to the old objects (such as names external
821821
to the module) are not rebound to refer to the new objects and
822822
must be updated in each namespace where they occur if that is
823-
desired.}
823+
desired.
824824

825825
\end{itemize}
826826

0 commit comments

Comments
 (0)