diff options
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/concrete.tex | 2 | ||||
-rw-r--r-- | Doc/api/newtypes.tex | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 8c93715..e174bee 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -2200,7 +2200,7 @@ There are very few functions specific to instance objects. \begin{cfuncdesc}{PyObject*}{PyInstance_NewRaw}{PyObject *class, PyObject *dict} - Create a new instance of a specific class without calling it's + Create a new instance of a specific class without calling its constructor. \var{class} is the class of new object. The \var{dict} parameter will be used as the object's \member{__dict__}; if \NULL{}, a new dictionary will be created for the instance. diff --git a/Doc/api/newtypes.tex b/Doc/api/newtypes.tex index f78066c..a95f836 100644 --- a/Doc/api/newtypes.tex +++ b/Doc/api/newtypes.tex @@ -191,7 +191,7 @@ These macros are used in the definition of \ctype{PyObject} and int ob_size; \end{verbatim} Note that \csimplemacro{PyObject_HEAD} is part of the expansion, and - that it's own expansion varies depending on the definition of + that its own expansion varies depending on the definition of \csimplemacro{Py_TRACE_REFS}. \end{csimplemacrodesc} |