[Python-checkins] cpython: Fix location of versionaddeds and empty lines.

georg.brandl python-checkins at python.org
Tue Apr 24 19:17:45 CEST 2012


http://hg.python.org/cpython/rev/224402f3ede4
changeset:   76531:224402f3ede4
user:        Georg Brandl <georg at python.org>
date:        Tue Apr 24 19:16:24 2012 +0200
summary:
  Fix location of versionaddeds and empty lines.

files:
  Doc/c-api/exceptions.rst |  9 ++++++---
  1 files changed, 6 insertions(+), 3 deletions(-)


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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list