diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-09-02 21:01:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 13:01:35 -0500 |
commit | 1f8ce6341159ebb0731c2c262f4576609210d2c8 (patch) | |
tree | aa10443358243366d776ad669c0cbcd383ed3634 /tools/refguide_check.py | |
parent | e3c84a44b68966ab887a3623a0ff57169e508deb (diff) | |
download | numpy-1f8ce6341159ebb0731c2c262f4576609210d2c8.tar.gz |
MAINT, DOC: move informational files from numpy.doc.*.py to their *.rst counterparts (#17222)
* DOC: redistribute docstring-only content from numpy/doc
* DOC: post-transition clean-up
* DOC, MAINT: reskip doctests, fix a few easy ones
Diffstat (limited to 'tools/refguide_check.py')
-rw-r--r-- | tools/refguide_check.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/tools/refguide_check.py b/tools/refguide_check.py index 43051d7e1..138e0ece7 100644 --- a/tools/refguide_check.py +++ b/tools/refguide_check.py @@ -71,7 +71,6 @@ BASE_MODULE = "numpy" PUBLIC_SUBMODULES = [ 'core', - 'doc.structured_arrays', 'f2py', 'linalg', 'lib', @@ -122,6 +121,15 @@ RST_SKIPLIST = [ 'c-info.python-as-glue.rst', 'f2py.getting-started.rst', 'arrays.nditer.cython.rst', + # See PR 17222, these should be fixed + 'basics.broadcasting.rst', + 'basics.byteswapping.rst', + 'basics.creation.rst', + 'basics.dispatch.rst', + 'basics.indexing.rst', + 'basics.subclassing.rst', + 'basics.types.rst', + 'misc.rst', ] # these names are not required to be present in ALL despite being in @@ -260,7 +268,7 @@ def get_all_dict(module): except ValueError: pass if not all_dict: - # Must be a pure documentation module like doc.structured_arrays + # Must be a pure documentation module all_dict.append('__doc__') # Modules are almost always private; real submodules need a separate |