Skip to content

Instantly share code, notes, and snippets.

@MJChimal
Last active April 17, 2024 19:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MJChimal/6d0c26e1d83e1789021210c248283578 to your computer and use it in GitHub Desktop.
Save MJChimal/6d0c26e1d83e1789021210c248283578 to your computer and use it in GitHub Desktop.
docstring-numpy-español-mustache
{{! 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