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

Skip to content

Commit fdf65d9

Browse files
committed
Grammatical fix: change possessive "it's" to "its".
1 parent 8fa8972 commit fdf65d9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/ext/newtypes.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ \section{The Basics
198198
0, /* ob_size */
199199
\end{verbatim}
200200

201-
The \member{ob_size} field of the header is not used; it's presence in
201+
The \member{ob_size} field of the header is not used; its presence in
202202
the type structure is a historical artifact that is maintained for
203203
binary compatibility with extension modules compiled for older
204204
versions of Python. Always set this field to zero.
@@ -442,7 +442,7 @@ \subsection{Object Presentation}
442442
The \member{tp_str} handler is to \function{str()} what the
443443
\member{tp_repr} handler described above is to \function{repr()}; that
444444
is, it is called when Python code calls \function{str()} on an
445-
instance of your object. It's implementation is very similar to the
445+
instance of your object. Its implementation is very similar to the
446446
\member{tp_repr} function, but the resulting string is intended for
447447
human consumption. If \member{tp_str} is not specified, the
448448
\member{tp_repr} handler is used instead.
@@ -880,7 +880,7 @@ \subsection{Abstract Protocol Support}
880880
\end{verbatim}
881881

882882
These functions provide support for the iterator protocol. Any object
883-
which wishes to support iteration over it's contents (which may be
883+
which wishes to support iteration over its contents (which may be
884884
generated during iteration) must implement the \code{tp_iter}
885885
handler. Objects which are returned by a \code{tp_iter} handler must
886886
implement both the \code{tp_iter} and \code{tp_iternext} handlers.

0 commit comments

Comments
 (0)