Como documentar métodos com parâmetros usando as strings de documentação do Python? EDIT: PEP 257 dá este exemplo: def complex(real=0.0, imag=0.0): """Form a complex number. Keyword arguments: real -- the real part (default 0.0) imag -- the imaginary part (default 0.0) """ if imag == 0.0...