[Bf-blender-cvs] [24d77e7db72] master: API docs: mathutils leaked markup

Tobias Heinke noreply at git.blender.org
Mon Jun 15 01:15:27 CEST 2020


Commit: 24d77e7db727c938e374655eec702a8162decf67
Author: Tobias Heinke
Date:   Sun Jun 14 19:14:26 2020 -0400
Branches: master
https://developer.blender.org/rB24d77e7db727c938e374655eec702a8162decf67

API docs: mathutils leaked markup

Reviewed By: Blendify

Differential Revision: https://developer.blender.org/D8021

===================================================================

M	release/datafiles/locale
M	release/scripts/addons
M	release/scripts/addons_contrib
M	source/blender/python/mathutils/mathutils_Matrix.c

===================================================================

diff --git a/release/datafiles/locale b/release/datafiles/locale
index 1cc27d5282a..6a514935090 160000
--- a/release/datafiles/locale
+++ b/release/datafiles/locale
@@ -1 +1 @@
-Subproject commit 1cc27d5282aa4978ee36663aca857eb550df194b
+Subproject commit 6a51493509090c7fa3bd2e69105761c3c144c7dd
diff --git a/release/scripts/addons b/release/scripts/addons
index 36cc6368b7a..fdfe8d4f412 160000
--- a/release/scripts/addons
+++ b/release/scripts/addons
@@ -1 +1 @@
-Subproject commit 36cc6368b7abee3bc1a47759107797117eb7d539
+Subproject commit fdfe8d4f41245e7c19068021ef12f58fa2ad32de
diff --git a/release/scripts/addons_contrib b/release/scripts/addons_contrib
index 9468c406fb5..4cf486c4eba 160000
--- a/release/scripts/addons_contrib
+++ b/release/scripts/addons_contrib
@@ -1 +1 @@
-Subproject commit 9468c406fb554e32ff47b62bfef356b3908ec651
+Subproject commit 4cf486c4eba158b453bdd87d97b74192ef7497b2
diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c
index 7a3a92d8a10..7896b939d77 100644
--- a/source/blender/python/mathutils/mathutils_Matrix.c
+++ b/source/blender/python/mathutils/mathutils_Matrix.c
@@ -1527,7 +1527,7 @@ PyDoc_STRVAR(
     "      (instead of raising a :exc:`ValueError` exception).\n"
     "   :type fallback: :class:`Matrix`\n"
     "\n"
-    "   .. seealso:: `Inverse matrix <https://en.wikipedia.org/wiki/Inverse_matrix>` on "
+    "   .. seealso:: `Inverse matrix <https://en.wikipedia.org/wiki/Inverse_matrix>`__ on "
     "Wikipedia.\n");
 static PyObject *Matrix_invert(MatrixObject *self, PyObject *args)
 {
@@ -1642,7 +1642,7 @@ PyDoc_STRVAR(Matrix_invert_safe_doc,
              "to get an invertible one.\n"
              "   If tweaked matrix is still degenerated, set to the identity matrix instead.\n"
              "\n"
-             "   .. seealso:: `Inverse Matrix <https://en.wikipedia.org/wiki/Inverse_matrix>` on "
+             "   .. seealso:: `Inverse Matrix <https://en.wikipedia.org/wiki/Inverse_matrix>`__ on "
              "Wikipedia.\n");
 static PyObject *Matrix_invert_safe(MatrixObject *self)
 {
@@ -1696,7 +1696,7 @@ PyDoc_STRVAR(
     "\n"
     "   .. note:: When the matrix cannot be adjugated a :exc:`ValueError` exception is raised.\n"
     "\n"
-    "   .. seealso:: `Adjugate matrix <https://en.wikipedia.org/wiki/Adjugate_matrix>` on "
+    "   .. seealso:: `Adjugate matrix <https://en.wikipedia.org/wiki/Adjugate_matrix>`__ on "
     "Wikipedia.\n");
 static PyObject *Matrix_adjugate(MatrixObject *self)
 {
@@ -1883,7 +1883,7 @@ PyDoc_STRVAR(
     "   :return: Return the determinant of a matrix.\n"
     "   :rtype: float\n"
     "\n"
-    "   .. seealso:: `Determinant <https://en.wikipedia.org/wiki/Determinant>` on Wikipedia.\n");
+    "   .. seealso:: `Determinant <https://en.wikipedia.org/wiki/Determinant>`__ on Wikipedia.\n");
 static PyObject *Matrix_determinant(MatrixObject *self)
 {
   if (BaseMath_ReadCallback(self) == -1) {
@@ -1906,7 +1906,7 @@ PyDoc_STRVAR(
     "\n"
     "   Set the matrix to its transpose.\n"
     "\n"
-    "   .. seealso:: `Transpose <https://en.wikipedia.org/wiki/Transpose>` on Wikipedia.\n");
+    "   .. seealso:: `Transpose <https://en.wikipedia.org/wiki/Transpose>`__ on Wikipedia.\n");
 static PyObject *Matrix_transpose(MatrixObject *self)
 {
   if (BaseMath_ReadCallback_ForWrite(self) == -1) {
@@ -2039,7 +2039,7 @@ PyDoc_STRVAR(Matrix_identity_doc,
              "   .. note:: An object with a location and rotation of zero, and a scale of one\n"
              "      will have an identity matrix.\n"
              "\n"
-             "   .. seealso:: `Identity matrix <https://en.wikipedia.org/wiki/Identity_matrix>` "
+             "   .. seealso:: `Identity matrix <https://en.wikipedia.org/wiki/Identity_matrix>`__ "
              "on Wikipedia.\n");
 static PyObject *Matrix_identity(MatrixObject *self)
 {



More information about the Bf-blender-cvs mailing list