https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision ce3b8b45613b5f23102afc2b5c1a4c80d6b3ec21 authored by Bryna Hazelton on 03 June 2019, 17:41:01 UTC, committed by GitHub on 03 June 2019, 17:41:01 UTC
* update some docstrings in uvdata.py to numpy style

* update more docstrings

* fix bugs introduced by eliminating *args and **kwargs, add tests

* fix handling of multiple input parameters with the same type/description

* fix a bug from the tutorial, add tests to catch it

* fix tests to actually cover passing _key2inds a nested tuple

* un-reorder uvdata methods for ease of PR and rebasing

will make issue to re-reorder

* improve returns section handling

* Fix docstring errors Adam found

* fix key types everywhere

* fix issues introduced in rebase

* fix another rebase mistake

* and another rebase fix
1 parent 0433774
Raw File
Tip revision: ce3b8b45613b5f23102afc2b5c1a4c80d6b3ec21 authored by Bryna Hazelton on 03 June 2019, 17:41:01 UTC
Numpy style docstrings (#604)
Tip revision: ce3b8b4
.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
pyuvdata/tests/cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/
docs/index.rst
docs/uvdata_parameters.rst
docs/uvcal_parameters.rst
docs/uvbeam_parameters.rst

# PyBuilder
target/

# exclude data files (can override as needed)
pyuvdata/data/
pyuvdata/data/test/
pyuvdata/GIT_INFO
docs/references/*.aux
docs/references/*.out
.pytest_cache
back to top