@@ -183,9 +183,8 @@ internal unsafe static void ErrorCheck(IntPtr pointer)
183183 }
184184
185185 /// <summary>
186- /// Shortcut for (pointer == NULL or ErrorOccurred()) -> throw PythonException
186+ /// Shortcut for (pointer == NULL or ErrorOccurred()) -> throw PythonException
187187 /// </summary>
188- /// Shortcut for (pointer == NULL) -> throw PythonException
189188 internal unsafe static void ErrorOccurredCheck ( IntPtr pointer )
190189 {
191190 if ( ( pointer == IntPtr . Zero ) || Exceptions . ErrorOccurred ( ) )
@@ -197,7 +196,6 @@ internal unsafe static void ErrorOccurredCheck(IntPtr pointer)
197196 /// <summary>
198197 /// ExceptionMatches Method
199198 /// </summary>
200- ///
201199 /// <remarks>
202200 /// Returns true if the current Python exception matches the given
203201 /// Python object. This is a wrapper for PyErr_ExceptionMatches.
@@ -210,7 +208,6 @@ public static bool ExceptionMatches(IntPtr ob)
210208 /// <summary>
211209 /// ExceptionMatches Method
212210 /// </summary>
213- ///
214211 /// <remarks>
215212 /// Returns true if the given Python exception matches the given
216213 /// Python object. This is a wrapper for PyErr_GivenExceptionMatches.
@@ -224,7 +221,6 @@ public static bool ExceptionMatches(IntPtr exc, IntPtr ob)
224221 /// <summary>
225222 /// SetError Method
226223 /// </summary>
227- ///
228224 /// <remarks>
229225 /// Sets the current Python exception given a native string.
230226 /// This is a wrapper for the Python PyErr_SetString call.
@@ -237,7 +233,6 @@ public static void SetError(IntPtr ob, string value)
237233 /// <summary>
238234 /// SetError Method
239235 /// </summary>
240- ///
241236 /// <remarks>
242237 /// Sets the current Python exception given a Python object.
243238 /// This is a wrapper for the Python PyErr_SetObject call.
@@ -250,7 +245,6 @@ public static void SetError(IntPtr ob, IntPtr value)
250245 /// <summary>
251246 /// SetError Method
252247 /// </summary>
253- ///
254248 /// <remarks>
255249 /// Sets the current Python exception given a CLR exception
256250 /// object. The CLR exception instance is wrapped as a Python
@@ -280,7 +274,6 @@ public static void SetError(Exception e)
280274 /// <summary>
281275 /// ErrorOccurred Method
282276 /// </summary>
283- ///
284277 /// <remarks>
285278 /// Returns true if an exception occurred in the Python runtime.
286279 /// This is a wrapper for the Python PyErr_Occurred call.
@@ -293,7 +286,6 @@ public static bool ErrorOccurred()
293286 /// <summary>
294287 /// Clear Method
295288 /// </summary>
296- ///
297289 /// <remarks>
298290 /// Clear any exception that has been set in the Python runtime.
299291 /// </remarks>
0 commit comments