@@ -10,20 +10,21 @@ msgstr ""
10
10
"Project-Id-Version : Python 3.8\n "
11
11
"Report-Msgid-Bugs-To : \n "
12
12
"POT-Creation-Date : 2019-05-06 11:59-0400\n "
13
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE \n "
14
- "Last-Translator : FULL NAME <EMAIL@ADDRESS> \n "
13
+ "PO-Revision-Date : 2020-10-10 12:32-0500 \n "
14
+ "Last-Translator : \n "
15
15
"Language-Team : python-doc-es\n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=UTF-8\n "
18
18
"Content-Transfer-Encoding : 8bit\n "
19
+ "Language : es\n "
19
20
20
21
#: ../Doc/library/codeop.rst:2
21
22
msgid ":mod:`codeop` --- Compile Python code"
22
- msgstr ""
23
+ msgstr ":mod:`codeop` --- Compila archivos fuente Python "
23
24
24
25
#: ../Doc/library/codeop.rst:10
25
26
msgid "**Source code:** :source:`Lib/codeop.py`"
26
- msgstr ""
27
+ msgstr "**Código fuente:** :source:`Lib/codeop.py` "
27
28
28
29
#: ../Doc/library/codeop.rst:14
29
30
msgid ""
@@ -32,33 +33,39 @@ msgid ""
32
33
"result, you probably don't want to use the module directly; if you want to "
33
34
"include such a loop in your program you probably want to use the :mod:`code` "
34
35
"module instead."
35
- msgstr ""
36
+ msgstr "El módulo :mod:`codeop` proporciona utilidades sobre las que se puede emular el de bucle lectura-evaluación-"
37
+ "impresión de Python, tal como se hace en el modulo :mod:`code`. Como "
38
+ "resultado, probablemente no desee utilizar el módulo directamente; si desea "
39
+ "incluir un ciclo de este tipo en su programa, probablemente desee utilizar el módulo :mod:`code` "
40
+ "en su lugar."
36
41
37
42
#: ../Doc/library/codeop.rst:20
38
43
msgid "There are two parts to this job:"
39
- msgstr ""
44
+ msgstr "Esta actividad consta de dos partes: "
40
45
41
46
#: ../Doc/library/codeop.rst:22
42
47
msgid ""
43
48
"Being able to tell if a line of input completes a Python statement: in "
44
49
"short, telling whether to print '``>>>``' or '``...``' next."
45
- msgstr ""
50
+ msgstr "Ser capaz de identificar si es una sentencia completa de Python: en "
51
+ "resumen, decir si se debe imprimir a continuación '``>>>``' o '``...``' ."
46
52
47
53
#: ../Doc/library/codeop.rst:25
48
54
msgid ""
49
55
"Remembering which future statements the user has entered, so subsequent "
50
56
"input can be compiled with these in effect."
51
- msgstr ""
57
+ msgstr "Recordar que sentencias posteriores ha ingresado el usuario, para que "
58
+ "estas entradas sean incluidas al momento de compilar."
52
59
53
60
#: ../Doc/library/codeop.rst:28
54
61
msgid ""
55
62
"The :mod:`codeop` module provides a way of doing each of these things, and a "
56
63
"way of doing them both."
57
- msgstr ""
64
+ msgstr "El módulo :mod:`codeop` proporciona formas de uso tanto independiente, como en conjunto "
58
65
59
66
#: ../Doc/library/codeop.rst:31
60
67
msgid "To do just the former:"
61
- msgstr ""
68
+ msgstr "Para hacer lo anterior: "
62
69
63
70
#: ../Doc/library/codeop.rst:35
64
71
msgid ""
0 commit comments