diff options
author | Yashasvi Misra <54177363+yashasvimisra2798@users.noreply.github.com> | 2021-07-23 13:58:39 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 11:28:39 +0300 |
commit | 3409bd3f38adc03cdf0096c53e897818517bc286 (patch) | |
tree | cd56a6326355125321677d4b3575c38ea44855f1 /doc/source/dev | |
parent | 1078723d2741d3379b65a70ee7aa23d9e7f08457 (diff) | |
download | numpy-3409bd3f38adc03cdf0096c53e897818517bc286.tar.gz |
DOC: Add link and explanation of _add_newdocs to developer guide (#19546)
Diffstat (limited to 'doc/source/dev')
-rw-r--r-- | doc/source/dev/howto-docs.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/source/dev/howto-docs.rst b/doc/source/dev/howto-docs.rst index 3687d7550..9354357e8 100644 --- a/doc/source/dev/howto-docs.rst +++ b/doc/source/dev/howto-docs.rst @@ -59,6 +59,10 @@ Obvious **wording** mistakes (like leaving out a "not") fall into the typo category, but other rewordings -- even for grammar -- require a judgment call, which raises the bar. Test the waters by first presenting the fix as an issue. +Some functions/objects like numpy.ndarray.transpose, numpy.array etc. defined in +C-extension modules have their docstrings defined seperately in `_add_newdocs.py +<https://github.com/numpy/numpy/blob/main/numpy/core/_add_newdocs.py>`__ + ********************** Contributing new pages ********************** |