Skip to content

Traducción library/atexit #2708

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Nov 3, 2023
Prev Previous commit
Next Next commit
correcion 3 library-atexit
  • Loading branch information
Sublian committed Nov 2, 2023
commit 081738743be8a658d620012e82653f8ef82973e4
18 changes: 9 additions & 9 deletions library/atexit.po
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-10-12 19:43+0200\n"
"PO-Revision-Date: 2023-11-01 17:04-0500\n"
"PO-Revision-Date: 2023-11-02 00:08-0500\n"
"Last-Translator: \n"
"Language-Team: python-doc-es\n"
"Language: es_AR\n"
Expand All @@ -37,7 +37,7 @@ msgid ""
msgstr ""
"El módulo :mod:`atexit` define funciones para registrar y cancelar el "
"registro de las funciones de limpieza. Las funciones así registradas se "
"ejecutan normalmente de forma automática al terminar el intérprete. El "
"ejecutan de forma automática al terminar el intérprete normalmente. El "
"módulo :mod:`atexit` realiza estas funciones en el orden *inverso* en el que "
"se registraron; si ingresa ``A``, ``B``, y ``C``, cuando el intérprete se "
"detenga, se ejecutarán en el orden ``C``, ``B``, ``A``."
Expand Down Expand Up @@ -123,19 +123,19 @@ msgid ""
"thread states while internal :mod:`threading` routines or the new process "
"try to use that state. This can lead to crashes rather than clean shutdown."
msgstr ""
"Iniciar nuevos hilos o llamar a :func:`os.fork` desde una función registrada "
"puede llevar a una condición de carrera entre el hilo principal de Python "
"liberando estados de hilos mientras las rutinas internas de :mod:`threading` "
"o el nuevo proceso intentan usar ese estado. Esto puede provocar fallos en "
"lugar de un cierre limpio."
"Iniciar nuevos hilos o llamar a :func:`bifurcar <os.fork>` desde una función "
"registrada puede llevar a una condición de carrera entre el hilo principal "
"de Python liberando estados de hilos mientras las rutinas internas de :mod:"
"`threading` o el nuevo proceso intentan usar ese estado. Esto puede provocar "
"fallos en lugar de un cierre limpio."

#: ../Doc/library/atexit.rst:58
msgid ""
"Attempts to start a new thread or :func:`os.fork` a new process in a "
"registered function now leads to :exc:`RuntimeError`."
msgstr ""
"Los intentos de iniciar un nuevo hilo :func:`os.fork` o un nuevo proceso en "
"una función registrada conducen ahora a un :exc:`RuntimeError`."
"Los intentos de iniciar un nuevo hilo o :func:`bifurcar <os.fork>` un nuevo "
"proceso en una función registrada conducen ahora a un :exc:`RuntimeError`."

#: ../Doc/library/atexit.rst:64
msgid ""
Expand Down