From: Yury Selivanov Date: Thu, 10 Nov 2016 18:25:26 +0000 (-0500) Subject: Issue #28635: Fix a couple of missing/incorrect versionchanged tags X-Git-Tag: v3.6.0b4~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3479b5f888136f0f7a8cfefec074d8fa47aab39d;p=thirdparty%2FPython%2Fcpython.git Issue #28635: Fix a couple of missing/incorrect versionchanged tags Patch by Elvis Pranskevichus. --- diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst index 25fb29c48c08..ee51791a907e 100644 --- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -311,7 +311,7 @@ an error value). Much like :c:func:`PyErr_SetImportError` but this function allows for specifying a subclass of :exc:`ImportError` to raise. - .. versionadded:: 3.4 + .. versionadded:: 3.6 .. c:function:: int PyErr_WarnExplicitObject(PyObject *category, PyObject *message, PyObject *filename, int lineno, PyObject *module, PyObject *registry) diff --git a/Doc/library/struct.rst b/Doc/library/struct.rst index 7e861fdeafdf..cc3017b5fcb3 100644 --- a/Doc/library/struct.rst +++ b/Doc/library/struct.rst @@ -232,6 +232,10 @@ platform-dependent. .. versionchanged:: 3.3 Added support for the ``'n'`` and ``'N'`` formats. +.. versionchanged:: 3.6 + Added support for the ``'e'`` format. + + Notes: (1)