diff options
author | Miguel de Val-Borro <miguel.deval@gmail.com> | 2013-11-11 13:45:51 -0500 |
---|---|---|
committer | Miguel de Val-Borro <miguel.deval@gmail.com> | 2013-11-11 13:46:52 -0500 |
commit | e1e021dde998b778de0f1adb397abc523a4ccb62 (patch) | |
tree | 3e199160cded26ead419490e9876983f28405e53 /doc | |
parent | 6132b9832d06a81457ff931c42ac09408f7b0398 (diff) | |
download | numpy-e1e021dde998b778de0f1adb397abc523a4ccb62.tar.gz |
DOC: Add an example of casting array type and byte order using astype.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/HOWTO_DOCUMENT.rst.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/HOWTO_DOCUMENT.rst.txt b/doc/HOWTO_DOCUMENT.rst.txt index 8e841755a..6789ce893 100644 --- a/doc/HOWTO_DOCUMENT.rst.txt +++ b/doc/HOWTO_DOCUMENT.rst.txt @@ -42,8 +42,11 @@ Additional PEPs of interest regarding documentation of code: Use a code checker: * `pylint <http://www.logilab.org/857>`_ - * `pyflakes` easy_install pyflakes + * `pyflakes <https://pypi.python.org/pypi/pyflakes>`_ * `pep8.py <http://svn.browsershots.org/trunk/devtools/pep8/pep8.py>`_ + * `flake8 <https://pypi.python.org/pypi/flake8>`_ + * `vim-flake8 <https://github.com/nvie/vim-flake8>`_ plugin for + automatically checking syntax and style with flake8 The following import conventions are used throughout the NumPy source and documentation:: @@ -260,7 +263,7 @@ The sections of the docstring are: LinAlgException If the matrix is not numerically invertible. - This section should be used judiciously, i.e only for errors + This section should be used judiciously, i.e., only for errors that are non-obvious or have a large chance of getting raised. 8. **See Also** |