Fix location of versionaddeds and empty lines.

This commit is contained in:
Georg Brandl 2012-04-24 19:16:24 +02:00
parent 4f2f3b6217
commit f4095837a7
1 changed files with 6 additions and 3 deletions

View File

@ -143,7 +143,7 @@ in various ways. There is a separate error indicator for each thread.
state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the
exception state. exception state.
.. versionadded:: 3.3 .. versionadded:: 3.3
.. c:function:: void PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback) .. c:function:: void PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback)
@ -161,7 +161,7 @@ in various ways. There is a separate error indicator for each thread.
state temporarily. Use :c:func:`PyErr_GetExcInfo` to read the exception state temporarily. Use :c:func:`PyErr_GetExcInfo` to read the exception
state. state.
.. versionadded:: 3.3 .. versionadded:: 3.3
.. c:function:: void PyErr_SetString(PyObject *type, const char *message) .. c:function:: void PyErr_SetString(PyObject *type, const char *message)
@ -264,6 +264,7 @@ in various ways. There is a separate error indicator for each thread.
Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional
parameter specifying the exception type to be raised. Availability: Windows. parameter specifying the exception type to be raised. Availability: Windows.
.. c:function:: PyObject* PyErr_SetImportError(PyObject *msg, PyObject *name, PyObject *path) .. c:function:: PyObject* PyErr_SetImportError(PyObject *msg, PyObject *name, PyObject *path)
This is a convenience function to raise :exc:`ImportError`. *msg* will be This is a convenience function to raise :exc:`ImportError`. *msg* will be
@ -273,6 +274,7 @@ in various ways. There is a separate error indicator for each thread.
.. versionadded:: 3.3 .. versionadded:: 3.3
.. c:function:: void PyErr_SyntaxLocationEx(char *filename, int lineno, int col_offset) .. c:function:: void PyErr_SyntaxLocationEx(char *filename, int lineno, int col_offset)
Set file, line, and offset information for the current exception. If the Set file, line, and offset information for the current exception. If the
@ -281,7 +283,7 @@ in various ways. There is a separate error indicator for each thread.
is a :exc:`SyntaxError`. *filename* is decoded from the filesystem encoding is a :exc:`SyntaxError`. *filename* is decoded from the filesystem encoding
(:func:`sys.getfilesystemencoding`). (:func:`sys.getfilesystemencoding`).
.. versionadded:: 3.2 .. versionadded:: 3.2
.. c:function:: void PyErr_SyntaxLocation(char *filename, int lineno) .. c:function:: void PyErr_SyntaxLocation(char *filename, int lineno)
@ -354,6 +356,7 @@ in various ways. There is a separate error indicator for each thread.
.. versionadded:: 3.2 .. versionadded:: 3.2
.. c:function:: int PyErr_CheckSignals() .. c:function:: int PyErr_CheckSignals()
.. index:: .. index::