Last active
April 17, 2024 19:44
-
-
Save MJChimal/6d0c26e1d83e1789021210c248283578 to your computer and use it in GitHub Desktop.
docstring-numpy-español-mustache
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{! Numpy Docstring Template }} | |
{{summaryPlaceholder}} | |
{{extendedSummaryPlaceholder}} | |
{{#parametersExist}} | |
Parámetros | |
---------- | |
{{#args}} | |
{{var}} : {{typePlaceholder}} | |
{{descriptionPlaceholder}} | |
{{/args}} | |
{{#kwargs}} | |
{{var}} : {{typePlaceholder}}, optional | |
{{descriptionPlaceholder}}, by default {{&default}} | |
{{/kwargs}} | |
{{/parametersExist}} | |
{{#returnsExist}} | |
Respuesta | |
--------- | |
{{#returns}} | |
{{typePlaceholder}} | |
{{descriptionPlaceholder}} | |
{{/returns}} | |
{{/returnsExist}} | |
{{#yieldsExist}} | |
Esperas | |
------- | |
{{#yields}} | |
{{typePlaceholder}} | |
{{descriptionPlaceholder}} | |
{{/yields}} | |
{{/yieldsExist}} | |
{{#exceptionsExist}} | |
Excepciones | |
----------- | |
{{#exceptions}} | |
{{type}} | |
{{descriptionPlaceholder}} | |
{{/exceptions}} | |
{{/exceptionsExist}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment