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

Skip to content

Commit 1aedbd8

Browse files
committed
"--" --> "---" in two places.
1 parent 4de05a9 commit 1aedbd8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Doc/ext.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ \section{A Simple Example}
140140
The \var{args} argument will be a pointer to a Python tuple object
141141
containing the arguments. Each item of the tuple corresponds to an
142142
argument in the call's argument list. The arguments are Python
143-
objects -- in order to do anything with them in our \C{} function we have
143+
objects --- in order to do anything with them in our \C{} function we have
144144
to convert them to \C{} values. The function \code{PyArg_ParseTuple()}
145145
in the Python API checks the argument types and converts them to \C{}
146146
values. It uses a template string to determine the required types of
@@ -666,7 +666,7 @@ \section{Format Strings for \sectcode{PyArg_ParseTuple()}}
666666
\end{description}
667667

668668
It is possible to pass Python long integers where integers are
669-
requested; however no proper range checking is done -- the most
669+
requested; however no proper range checking is done --- the most
670670
significant bits are silently truncated when the receiving field is
671671
too small to receive the value (actually, the semantics are inherited
672672
from downcasts in \C{} --- your milage may vary).

Doc/ext/ext.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ \section{A Simple Example}
140140
The \var{args} argument will be a pointer to a Python tuple object
141141
containing the arguments. Each item of the tuple corresponds to an
142142
argument in the call's argument list. The arguments are Python
143-
objects -- in order to do anything with them in our \C{} function we have
143+
objects --- in order to do anything with them in our \C{} function we have
144144
to convert them to \C{} values. The function \code{PyArg_ParseTuple()}
145145
in the Python API checks the argument types and converts them to \C{}
146146
values. It uses a template string to determine the required types of
@@ -666,7 +666,7 @@ \section{Format Strings for \sectcode{PyArg_ParseTuple()}}
666666
\end{description}
667667

668668
It is possible to pass Python long integers where integers are
669-
requested; however no proper range checking is done -- the most
669+
requested; however no proper range checking is done --- the most
670670
significant bits are silently truncated when the receiving field is
671671
too small to receive the value (actually, the semantics are inherited
672672
from downcasts in \C{} --- your milage may vary).

0 commit comments

Comments
 (0)