diff options
author | Pauli Virtanen <pav@iki.fi> | 2015-10-25 13:57:37 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2015-10-25 13:57:40 +0200 |
commit | 9d63530e0b7d0a880a0f49713c48ef6f0c11b315 (patch) | |
tree | 7bbb1e9703c9b93ddff8be684e3bd6540c73020d | |
parent | cec39effb1739ae0a7690e56d58d3e9432569d5f (diff) | |
download | numpy-9d63530e0b7d0a880a0f49713c48ef6f0c11b315.tar.gz |
DOC: remove placeholders and incompleteness warnings
Neither are useful, and will discourage both reading and editing of the
material.
-rw-r--r-- | doc/source/user/howtofind.rst | 7 | ||||
-rw-r--r-- | doc/source/user/index.rst | 14 | ||||
-rw-r--r-- | doc/source/user/misc.rst | 2 | ||||
-rw-r--r-- | doc/source/user/performance.rst | 5 | ||||
-rw-r--r-- | numpy/doc/howtofind.py | 10 | ||||
-rw-r--r-- | numpy/doc/io.py | 10 | ||||
-rw-r--r-- | numpy/doc/jargon.py | 10 | ||||
-rw-r--r-- | numpy/doc/methods_vs_functions.py | 10 | ||||
-rw-r--r-- | numpy/doc/performance.py | 10 |
9 files changed, 0 insertions, 78 deletions
diff --git a/doc/source/user/howtofind.rst b/doc/source/user/howtofind.rst deleted file mode 100644 index 00ed5daa7..000000000 --- a/doc/source/user/howtofind.rst +++ /dev/null @@ -1,7 +0,0 @@ -************************* -How to find documentation -************************* - -.. seealso:: :ref:`Numpy-specific help functions <routines.help>` - -.. automodule:: numpy.doc.howtofind diff --git a/doc/source/user/index.rst b/doc/source/user/index.rst index 022efcaeb..6c0a2e929 100644 --- a/doc/source/user/index.rst +++ b/doc/source/user/index.rst @@ -9,20 +9,6 @@ explains how to install and make use of the most important features of NumPy. For detailed reference documentation of the functions and classes contained in the package, see the :ref:`reference`. -.. warning:: - - This "User Guide" is still a work in progress; some of the material - is not organized, and several aspects of NumPy are not yet covered - sufficient detail. We are an open source community continually - working to improve the documentation and eagerly encourage interested - parties to contribute. For information on how to do so, please visit - the NumPy `doc wiki <http://docs.scipy.org/numpy/Front%20Page>`_. - - More documentation for NumPy can be found on the `numpy.org - <http://www.numpy.org>`__ website. - - Thanks! - .. toctree:: :maxdepth: 2 diff --git a/doc/source/user/misc.rst b/doc/source/user/misc.rst index 0e1807f3f..c10aea486 100644 --- a/doc/source/user/misc.rst +++ b/doc/source/user/misc.rst @@ -3,5 +3,3 @@ Miscellaneous ************* .. automodule:: numpy.doc.misc - -.. automodule:: numpy.doc.methods_vs_functions diff --git a/doc/source/user/performance.rst b/doc/source/user/performance.rst deleted file mode 100644 index 59f8a2edc..000000000 --- a/doc/source/user/performance.rst +++ /dev/null @@ -1,5 +0,0 @@ -*********** -Performance -*********** - -.. automodule:: numpy.doc.performance diff --git a/numpy/doc/howtofind.py b/numpy/doc/howtofind.py deleted file mode 100644 index e080d263a..000000000 --- a/numpy/doc/howtofind.py +++ /dev/null @@ -1,10 +0,0 @@ -""" - -================= -How to Find Stuff -================= - -How to find things in NumPy. - -""" -from __future__ import division, absolute_import, print_function diff --git a/numpy/doc/io.py b/numpy/doc/io.py deleted file mode 100644 index e45bfc9b3..000000000 --- a/numpy/doc/io.py +++ /dev/null @@ -1,10 +0,0 @@ -""" - -========= -Array I/O -========= - -Placeholder for array I/O documentation. - -""" -from __future__ import division, absolute_import, print_function diff --git a/numpy/doc/jargon.py b/numpy/doc/jargon.py deleted file mode 100644 index 3fcbc7d23..000000000 --- a/numpy/doc/jargon.py +++ /dev/null @@ -1,10 +0,0 @@ -""" - -====== -Jargon -====== - -Placeholder for computer science, engineering and other jargon. - -""" -from __future__ import division, absolute_import, print_function diff --git a/numpy/doc/methods_vs_functions.py b/numpy/doc/methods_vs_functions.py deleted file mode 100644 index 4149000bc..000000000 --- a/numpy/doc/methods_vs_functions.py +++ /dev/null @@ -1,10 +0,0 @@ -""" - -===================== -Methods vs. Functions -===================== - -Placeholder for Methods vs. Functions documentation. - -""" -from __future__ import division, absolute_import, print_function diff --git a/numpy/doc/performance.py b/numpy/doc/performance.py deleted file mode 100644 index b0c158bf3..000000000 --- a/numpy/doc/performance.py +++ /dev/null @@ -1,10 +0,0 @@ -""" - -=========== -Performance -=========== - -Placeholder for Improving Performance documentation. - -""" -from __future__ import division, absolute_import, print_function |