diff options
author | mattip <matti.picus@gmail.com> | 2019-10-15 18:03:11 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-15 18:03:11 +0300 |
commit | efaaa96767e3ca048a3cd01107d811e345e3438c (patch) | |
tree | f222075f650747f7d66115effd05626c27727319 /numpy/core/shape_base.py | |
parent | 2300ae084b73ab961b7945d7b0bf4ad3162a7ce2 (diff) | |
download | numpy-efaaa96767e3ca048a3cd01107d811e345e3438c.tar.gz |
DOC: convert `None` to bare None or ``None``
Diffstat (limited to 'numpy/core/shape_base.py')
-rw-r--r-- | numpy/core/shape_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/shape_base.py b/numpy/core/shape_base.py index d7e769e62..369d956fb 100644 --- a/numpy/core/shape_base.py +++ b/numpy/core/shape_base.py @@ -472,7 +472,7 @@ def _block_check_depths_match(arrays, parent_index=[]): first_index : list of int The full index of an element from the bottom of the nesting in `arrays`. If any element at the bottom is an empty list, this will - refer to it, and the last index along the empty axis will be `None`. + refer to it, and the last index along the empty axis will be None. max_arr_ndim : int The maximum of the ndims of the arrays nested in `arrays`. final_size: int |