From ad0975bae5c404459075cbf9f3f7f435311bba800a60cf29ba44fffc45776b00 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Fri, 18 Jun 2021 23:00:45 +0000 Subject: [PATCH] - Add bpo44426-complex-keyword-sphinx.patch allowing generating documentation with Sphinx 4 (bpo#44426). OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python38?expand=0&rev=73 --- bpo44426-complex-keyword-sphinx.patch | 44 +++++++++++++++++++++++++++ python38.changes | 6 ++++ python38.spec | 4 +++ 3 files changed, 54 insertions(+) create mode 100644 bpo44426-complex-keyword-sphinx.patch diff --git a/bpo44426-complex-keyword-sphinx.patch b/bpo44426-complex-keyword-sphinx.patch new file mode 100644 index 0000000..ed23189 --- /dev/null +++ b/bpo44426-complex-keyword-sphinx.patch @@ -0,0 +1,44 @@ +From 29b463879b71a3ade67541c34daafb2929269fc4 Mon Sep 17 00:00:00 2001 +From: Mark Dickinson +Date: Wed, 16 Jun 2021 18:43:49 +0100 +Subject: [PATCH] bpo-44426: Use of 'complex' as a C variable name confuses + Sphinx; change it to 'num'. (GH-26744) (cherry picked from commit + 7247f6f433846c6e37308a550e8e5eb6be379856) + +Co-authored-by: Mark Dickinson +--- + Doc/c-api/complex.rst | 4 ++-- + Doc/c-api/object.rst | 4 ++-- + 2 files changed, 4 insertions(+), 4 deletions(-) + +--- a/Doc/c-api/complex.rst ++++ b/Doc/c-api/complex.rst +@@ -46,9 +46,9 @@ pointers. This is consistent throughout + :c:type:`Py_complex` representation. + + +-.. c:function:: Py_complex _Py_c_neg(Py_complex complex) ++.. c:function:: Py_complex _Py_c_neg(Py_complex num) + +- Return the negation of the complex number *complex*, using the C ++ Return the negation of the complex number *num*, using the C + :c:type:`Py_complex` representation. + + +--- a/Doc/c-api/object.rst ++++ b/Doc/c-api/object.rst +@@ -483,12 +483,12 @@ Object Protocol + returned. This is the equivalent to the Python expression ``len(o)``. + + +-.. c:function:: Py_ssize_t PyObject_LengthHint(PyObject *o, Py_ssize_t default) ++.. c:function:: Py_ssize_t PyObject_LengthHint(PyObject *o, Py_ssize_t def_size) + + Return an estimated length for the object *o*. First try to return its + actual length, then an estimate using :meth:`~object.__length_hint__`, and + finally return the default value. On error return ``-1``. This is the +- equivalent to the Python expression ``operator.length_hint(o, default)``. ++ equivalent to the Python expression ``operator.length_hint(o, def_size)``. + + .. versionadded:: 3.4 + diff --git a/python38.changes b/python38.changes index 6ca6748..6a8e6e8 100644 --- a/python38.changes +++ b/python38.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Jun 18 22:45:17 UTC 2021 - Matej Cepl + +- Add bpo44426-complex-keyword-sphinx.patch allowing generating + documentation with Sphinx 4 (bpo#44426). + ------------------------------------------------------------------- Tue Jun 8 11:18:08 UTC 2021 - Dirk Müller diff --git a/python38.spec b/python38.spec index 4292162..d9d829c 100644 --- a/python38.spec +++ b/python38.spec @@ -151,6 +151,9 @@ Patch28: bpo36302-sort-module-sources.patch Patch29: bpo-31046_ensurepip_honours_prefix.patch # PATCH-FIX-UPSTREAM stop calling removed Sphinx function gh#python/cpython#13236 Patch32: sphinx-update-removed-function.patch +# PATCH-FIX-UPSTREAM bpo44426-complex-keyword-sphinx.patch bpo#44426 mcepl@suse.com +# Use of 'complex' as a C variable name confuses Sphinx; change it to 'num' +Patch33: bpo44426-complex-keyword-sphinx.patch BuildRequires: autoconf-archive BuildRequires: automake BuildRequires: fdupes @@ -406,6 +409,7 @@ other applications. %patch28 -p1 %patch29 -p1 %patch32 -p1 +%patch33 -p1 # drop Autoconf version requirement sed -i 's/^AC_PREREQ/dnl AC_PREREQ/' configure.ac