@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2023-10-12 19:43+0200\n "
14
- "PO-Revision-Date : 2022 -10-30 22:11-0300 \n "
14
+ "PO-Revision-Date : 2023 -10-21 15:33-0500 \n "
15
15
"Last-Translator : Marco Richetta <marcorichetta@gmail.com>\n "
16
16
"Language : es\n "
17
17
"Language-Team : python-doc-es\n "
@@ -20,6 +20,7 @@ msgstr ""
20
20
"Content-Type : text/plain; charset=utf-8\n "
21
21
"Content-Transfer-Encoding : 8bit\n "
22
22
"Generated-By : Babel 2.13.0\n "
23
+ "X-Generator : Poedit 2.3\n "
23
24
24
25
#: ../Doc/library/ast.rst:2
25
26
msgid ":mod:`ast` --- Abstract Syntax Trees"
@@ -246,65 +247,84 @@ msgstr ""
246
247
247
248
#: ../Doc/library/ast.rst:153
248
249
msgid "Root nodes"
249
- msgstr ""
250
+ msgstr "Nodos principales "
250
251
251
252
#: ../Doc/library/ast.rst:157
252
253
msgid ""
253
254
"A Python module, as with :ref:`file input <file-input>`. Node type generated "
254
255
"by :func:`ast.parse` in the default ``\" exec\" `` *mode*."
255
256
msgstr ""
257
+ "Un módulo de Python, como con :ref:`archivo-entrada <file-input>`. Tipo de "
258
+ "nodo generado por :func:`ast.parse` en el modo por defecto ``\" exec\" `` "
259
+ "*mode*."
256
260
257
261
#: ../Doc/library/ast.rst:160
258
262
msgid "*body* is a :class:`list` of the module's :ref:`ast-statements`."
259
- msgstr ""
263
+ msgstr "*body* es una :class:`list` de las :ref:`ast-statements` del módulo. "
260
264
261
265
#: ../Doc/library/ast.rst:162
262
266
msgid ""
263
267
"*type_ignores* is a :class:`list` of the module's type ignore comments; see :"
264
268
"func:`ast.parse` for more details."
265
269
msgstr ""
270
+ "*type_ignores* es una :class:`list` de los comentarios para ignorar tipos "
271
+ "del módulo; véase :func:`ast.parse` para más detalles."
266
272
267
273
#: ../Doc/library/ast.rst:179
268
274
msgid ""
269
275
"A single Python :ref:`expression input <expression-input>`. Node type "
270
276
"generated by :func:`ast.parse` when *mode* is ``\" eval\" ``."
271
277
msgstr ""
278
+ "Una única :ref:`expression input <expression-input>`. de Python. Tipo de "
279
+ "nodo generado por :func:`ast.parse` cuando *mode* es ``\" eval\" ``."
272
280
273
281
#: ../Doc/library/ast.rst:182
274
282
msgid ""
275
283
"*body* is a single node, one of the :ref:`expression types <ast-"
276
284
"expressions>`."
277
285
msgstr ""
286
+ "*body* es un único nodo, uno de los tipos de :ref:`expression types <ast-"
287
+ "expressions>`."
278
288
279
289
#: ../Doc/library/ast.rst:194
280
290
msgid ""
281
291
"A single :ref:`interactive input <interactive>`, like in :ref:`tut-interac`. "
282
292
"Node type generated by :func:`ast.parse` when *mode* is ``\" single\" ``."
283
293
msgstr ""
294
+ "Una única entrada :ref:`interactive <interactive>`, como en :ref:`tut-"
295
+ "interac`. Tipo de nodo generado por :func:`ast.parse` cuando *mode* es ``"
296
+ "\" single\" ``."
284
297
285
298
#: ../Doc/library/ast.rst:197
286
299
msgid "*body* is a :class:`list` of :ref:`statement nodes <ast-statements>`."
287
300
msgstr ""
301
+ "*body* es una :class:`list` de :ref:`nodos de declaración <ast-statements>`."
288
302
289
303
#: ../Doc/library/ast.rst:216
290
304
msgid ""
291
305
"A representation of an old-style type comments for functions, as Python "
292
306
"versions prior to 3.5 didn't support :pep:`484` annotations. Node type "
293
307
"generated by :func:`ast.parse` when *mode* is ``\" func_type\" ``."
294
308
msgstr ""
309
+ "Una interpretación de un comentario de tipo de estilo antiguo para "
310
+ "funciones, ya que las versiones de Python anteriores a la 3.5 no soportaban "
311
+ "anotaciones :pep:`484`. Tipo de nodo generado por :func:`ast.parse` cuando "
312
+ "*mode* es ``\" func_type\" ``."
295
313
296
314
#: ../Doc/library/ast.rst:220
297
315
msgid "Such type comments would look like this::"
298
- msgstr ""
316
+ msgstr "Los comentarios de este tipo tendrían el siguiente aspecto:: "
299
317
300
318
#: ../Doc/library/ast.rst:226
301
319
msgid ""
302
320
"*argtypes* is a :class:`list` of :ref:`expression nodes <ast-expressions>`."
303
321
msgstr ""
322
+ "*argtypes* es una :class:`list` de :ref:`nodos de expresión <ast-"
323
+ "expressions>`."
304
324
305
325
#: ../Doc/library/ast.rst:228
306
326
msgid "*returns* is a single :ref:`expression node <ast-expressions>`."
307
- msgstr ""
327
+ msgstr "*returns* es un único :ref:`nodo de expresión <ast-expressions>`. "
308
328
309
329
#: ../Doc/library/ast.rst:246
310
330
msgid "Literals"
@@ -542,12 +562,11 @@ msgid "``args`` holds a list of the arguments passed by position."
542
562
msgstr "``args`` contiene una lista de argumentos pasados por posición."
543
563
544
564
#: ../Doc/library/ast.rst:588
545
- #, fuzzy
546
565
msgid ""
547
566
"``keywords`` holds a list of :class:`.keyword` objects representing "
548
567
"arguments passed by keyword."
549
568
msgstr ""
550
- "``keywords`` contiene una lista de objetos :class:`keyword` que representan "
569
+ "``keywords`` contiene una lista de objetos :class:`. keyword` que representan "
551
570
"argumentos pasados por nombre clave."
552
571
553
572
#: ../Doc/library/ast.rst:591
@@ -767,6 +786,10 @@ msgid ""
767
786
"ref:`type parameters <ast-type-params>`, and ``value`` is the value of the "
768
787
"type alias."
769
788
msgstr ""
789
+ "Un alias :ref:`type alias <type-aliases>` creado mediante la sentencia :"
790
+ "keyword:`type`. ``name`` es el nombre del alias, ``type_params`` es una "
791
+ "lista de parámetros :ref:`type <ast-type-params>`, y ``value`` es el valor "
792
+ "del alias de tipo."
770
793
771
794
#: ../Doc/library/ast.rst:1042
772
795
msgid ""
@@ -1116,32 +1139,42 @@ msgstr ""
1116
1139
1117
1140
#: ../Doc/library/ast.rst:1793
1118
1141
msgid "Type parameters"
1119
- msgstr ""
1142
+ msgstr "Tipos de parámetro "
1120
1143
1121
1144
#: ../Doc/library/ast.rst:1795
1122
1145
msgid ""
1123
1146
":ref:`Type parameters <type-params>` can exist on classes, functions, and "
1124
1147
"type aliases."
1125
1148
msgstr ""
1149
+ ":ref:`Type parameters <type-params>` pueden existir en clases, funciones y "
1150
+ "alias de tipo."
1126
1151
1127
1152
#: ../Doc/library/ast.rst:1800
1128
1153
msgid ""
1129
1154
"A :class:`typing.TypeVar`. ``name`` is the name of the type variable. "
1130
1155
"``bound`` is the bound or constraints, if any. If ``bound`` is a :class:"
1131
1156
"`Tuple`, it represents constraints; otherwise it represents the bound."
1132
1157
msgstr ""
1158
+ "Una :class:`typing.TypeVar`. ``name`` es el nombre de la variable de tipo. "
1159
+ "``bound`` es el límite o las restricciones, si las hay. Si ``bound`` es una :"
1160
+ "class:`Tuple`, representa las restricciones; en caso contrario, representa "
1161
+ "el límite."
1133
1162
1134
1163
#: ../Doc/library/ast.rst:1825
1135
1164
msgid ""
1136
1165
"A :class:`typing.ParamSpec`. ``name`` is the name of the parameter "
1137
1166
"specification."
1138
1167
msgstr ""
1168
+ "Una :class:`typing.ParamSpec`. ``name`` es el nombre de la especificación "
1169
+ "del parámetro."
1139
1170
1140
1171
#: ../Doc/library/ast.rst:1850
1141
1172
msgid ""
1142
1173
"A :class:`typing.TypeVarTuple`. ``name`` is the name of the type variable "
1143
1174
"tuple."
1144
1175
msgstr ""
1176
+ "Una :class:`typing.TypeVarTuple`. ``name`` es el nombre de la tupla variable "
1177
+ "de tipo."
1145
1178
1146
1179
#: ../Doc/library/ast.rst:1875
1147
1180
msgid "Function and class definitions"
@@ -1180,11 +1213,12 @@ msgstr "``returns`` es la anotación de retorno."
1180
1213
#: ../Doc/library/ast.rst:1887 ../Doc/library/ast.rst:2065
1181
1214
msgid "``type_params`` is a list of :ref:`type parameters <ast-type-params>`."
1182
1215
msgstr ""
1216
+ "``type_params`` es una lista de :ref:`type parameters <ast-type-params>`."
1183
1217
1184
1218
#: ../Doc/library/ast.rst:1893 ../Doc/library/ast.rst:2094
1185
1219
#: ../Doc/library/ast.rst:2105
1186
1220
msgid "Added ``type_params``."
1187
- msgstr ""
1221
+ msgstr "Se ha añadido ``type_params``. "
1188
1222
1189
1223
#: ../Doc/library/ast.rst:1899
1190
1224
msgid ""
@@ -1285,13 +1319,12 @@ msgstr ""
1285
1319
"explícitamente."
1286
1320
1287
1321
#: ../Doc/library/ast.rst:2059
1288
- #, fuzzy
1289
1322
msgid ""
1290
1323
"``keywords`` is a list of :class:`.keyword` nodes, principally for "
1291
1324
"'metaclass'. Other keywords will be passed to the metaclass, as per "
1292
1325
"`PEP-3115 <https://peps.python.org/pep-3115/>`_."
1293
1326
msgstr ""
1294
- "``keywords`` es una lista de nodos :class:`keyword`, principalmente para "
1327
+ "``keywords`` es una lista de nodos :class:`. keyword`, principalmente para "
1295
1328
"'metaclase'. Otras palabras clave se pasarán a la metaclase, según `PEP-3115 "
1296
1329
"<https://peps.python.org/pep-3115/>`_."
1297
1330
@@ -1816,10 +1849,10 @@ msgstr ""
1816
1849
#: ../Doc/library/ast.rst:2423
1817
1850
msgid ""
1818
1851
"If *indent* is a non-negative integer or string, then the tree will be "
1819
- "pretty-printed with that indent level. An indent level of 0, negative, or "
1820
- "`` \"\" `` will only insert newlines. ``None`` (the default) selects the "
1821
- "single line representation. Using a positive integer indent indents that "
1822
- "many spaces per level. If *indent* is a string (such as ``\"\\ t\" ``), that "
1852
+ "pretty-printed with that indent level. An indent level of 0, negative, or `` "
1853
+ "\"\" `` will only insert newlines. ``None`` (the default) selects the single "
1854
+ "line representation. Using a positive integer indent indents that many "
1855
+ "spaces per level. If *indent* is a string (such as ``\"\\ t\" ``), that "
1823
1856
"string is used to indent each level."
1824
1857
msgstr ""
1825
1858
"Si *indent* es un entero no negativo o una cadena de caracteres, entonces el "
@@ -1975,16 +2008,15 @@ msgstr ""
1975
2008
1976
2009
#: ../Doc/library/ast.rst:59
1977
2010
msgid "? (question mark)"
1978
- msgstr ""
2011
+ msgstr "? (question mark) "
1979
2012
1980
2013
#: ../Doc/library/ast.rst:59 ../Doc/library/ast.rst:60
1981
- #, fuzzy
1982
2014
msgid "in AST grammar"
1983
- msgstr "Gramática abstracta"
2015
+ msgstr "una Gramática abstracta"
1984
2016
1985
2017
#: ../Doc/library/ast.rst:60
1986
2018
msgid "* (asterisk)"
1987
- msgstr ""
2019
+ msgstr "* (asterisk) "
1988
2020
1989
2021
#~ msgid ""
1990
2022
#~ "``starargs`` and ``kwargs`` are each a single node, as in a function "
0 commit comments