diff --git a/Doc/Manual/Python.html b/Doc/Manual/Python.html index c1cc1796d..cc21bc011 100644 --- a/Doc/Manual/Python.html +++ b/Doc/Manual/Python.html @@ -5377,10 +5377,9 @@ int SWIG_ConvertPtr(PyObject *obj, void **ptr, swig_type_info *ty, int flags)obj to a C pointer. The result of the conversion is placed into the pointer located at ptr. ty is a SWIG type descriptor structure. flags is used to handle error checking and other aspects of conversion. It is the -bitwise-or of several flag values including SWIG_POINTER_EXCEPTION and -SWIG_POINTER_DISOWN. The first flag makes the function raise an exception on type -error. The second flag additionally -steals ownership of an object. Returns 0 on success and -1 on error. +bitwise-or of several flag values including SWIG_POINTER_DISOWN (which steals +ownership of the object) and SWIG_POINTER_NO_NULL (which makes the conversion fail +if the C pointer would be NULL). Returns 0 on success and -1 on error.