Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c1fc499

Browse files
author
Rodrigo Poblete
committed
chore: add requested corrections
1 parent d13b6c5 commit c1fc499

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

library/sys.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ msgid ""
748748
"another, only the exception handled by the innermost handler is accessible."
749749
msgstr ""
750750
"Esta función, cuando se llama mientras se ejecuta un manejador de "
751-
"excepciones (como una cláusula ``except`` o ``except*``), devuelve la "
751+
"excepciones (como una cláusula ``except`` o ``except*``), retorna la "
752752
"instancia de la excepción que fue capturada por este manejador. Cuando los "
753753
"manejadores de excepciones están anidados unos dentro de otros, sólo la "
754754
"excepción manejada por el manejador más interno es accesible."
@@ -757,7 +757,7 @@ msgstr ""
757757
msgid "If no exception handler is executing, this function returns ``None``."
758758
msgstr ""
759759
"Si no se está ejecutando ningún manejador de excepciones, esta función "
760-
"devuelve ``None``."
760+
"retorna ``None``."
761761

762762
#: ../Doc/library/sys.rst:425
763763
msgid ""
@@ -769,9 +769,9 @@ msgid ""
769769
"`traceback object <traceback-objects>` which typically encapsulates the call "
770770
"stack at the point where the exception last occurred."
771771
msgstr ""
772-
"Esta función devuelve la representación de estilo antiguo de la excepción "
772+
"Esta función retorna la representación de estilo antiguo de la excepción "
773773
"manejada. Si se maneja una excepción ``e`` (por lo que :func:`exception` "
774-
"devolvería ``e``), :func:`exc_info` devuelve la tupla ``(type(e), e, e."
774+
"devolvería ``e``), :func:`exc_info` retorna la tupla ``(type(e), e, e."
775775
"__traceback__)``. Es decir, una tupla que contiene el tipo de la excepción "
776776
"(una subclase de :exc:`BaseException`), la propia excepción, y un objeto :"
777777
"ref:`objeto traceback <traceback-objects>` que suele encapsular la pila de "
@@ -783,7 +783,7 @@ msgid ""
783783
"a tuple containing three ``None`` values."
784784
msgstr ""
785785
"Si no se está manejando ninguna excepción en ninguna parte de la pila, esta "
786-
"función devuelve una tupla que contiene tres valores ``None``."
786+
"función retorna una tupla que contiene tres valores ``None``."
787787

788788
#: ../Doc/library/sys.rst:439
789789
msgid ""
@@ -1484,7 +1484,7 @@ msgid ""
14841484
"Returns the current value for the :ref:`integer string conversion length "
14851485
"limitation <int_max_str_digits>`. See also :func:`set_int_max_str_digits`."
14861486
msgstr ""
1487-
"Devuelve el valor actual para :ref:`limitación de longitud de conversión de "
1487+
"Retorna el valor actual para :ref:`limitación de longitud de conversión de "
14881488
"cadena entera <int_max_str_digits>`. Ver también :func:"
14891489
"`set_int_max_str_digits`."
14901490

0 commit comments

Comments
 (0)