@@ -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
202202the type structure is a historical artifact that is maintained for
203203binary compatibility with extension modules compiled for older
204204versions of Python. Always set this field to zero.
@@ -442,7 +442,7 @@ \subsection{Object Presentation}
442442The \member {tp_str} handler is to \function {str()} what the
443443\member {tp_repr} handler described above is to \function {repr()}; that
444444is, 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
447447human 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
882882These 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
884884generated during iteration) must implement the \code {tp_iter}
885885handler. Objects which are returned by a \code {tp_iter} handler must
886886implement both the \code {tp_iter} and \code {tp_iternext} handlers.
0 commit comments