Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-06-04 09:54:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-04 09:54:40 +0300
commit7719c110064fc6f90c93c5339681b7dd9f5cbd63 (patch)
tree6939cd7d5eeeb083d9846ea1945a74dd4a4dc3cb /source/blender/python/intern/bpy_rna_array.c
parent854db8951bc15a7545eea3ff2219a28897698ead (diff)
Cleanup: strip trailing space in Python module
Diffstat (limited to 'source/blender/python/intern/bpy_rna_array.c')
-rw-r--r--source/blender/python/intern/bpy_rna_array.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/intern/bpy_rna_array.c b/source/blender/python/intern/bpy_rna_array.c
index ed9d1e9c0e5..571ee0edea2 100644
--- a/source/blender/python/intern/bpy_rna_array.c
+++ b/source/blender/python/intern/bpy_rna_array.c
@@ -277,10 +277,10 @@ static int validate_array_length(PyObject *rvalue, PointerRNA *ptr, PropertyRNA
* dimsize[1] = 4
* dimsize[2] = 5
* lvalue_dim = 0, totdim = 3
- *
+ *
* arr[2][3] = x
* lvalue_dim = 1
- *
+ *
* arr[2][3][4] = x
* lvalue_dim = 2 */
for (i = lvalue_dim; i < totdim; i++)
@@ -805,7 +805,7 @@ PyObject *pyrna_py_from_array_index(BPy_PropertyArrayRNA *self, PointerRNA *ptr,
*
* x = arr[2]
* index = 0 + 2 * 4 * 5
- *
+ *
* x = arr[2][3]
* index = offset + 3 * 5 */