pyjanitor-devs/pyjanitor

[DOC] Update documentation to include which types of errors can be thrown

Open

#512 aberto em 29 de jul. de 2019

Ver no GitHub
 (1 comment) (2 reactions) (1 assignee)Python (164 forks)batch import
being worked ondocfixgood first issuegood intermediate issue

Métricas do repositório

Stars
 (1.217 stars)
Métricas de merge de PR
 (Mesclagem média 2d 12h) (4 fundiu PRs em 30d)

Description

Brief Description of Fix

Right now, our documentation lists inputs and return values, but it does not include information about what types of errors functions normally raise. This is helpful information if you're working with try/except blocks, so that you know what errors to expect. And just as a matter of completeness, it's good to know all the outputs of a function, including likely errors.

Relevant Context

This would pretty much apply to every docstring, though I'm guessing we'll just add them piecemeal. According to my very poor understanding of Sphinx (I'm looking at here), we should be able to add documentation like

:raises: ValueError, TypeError

as we go along.

Guia do colaborador