@@ -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 : 2020-05-07 14:37+0200\n "
14
- "PO-Revision-Date : 2020-05-15 01:17 +0200\n "
14
+ "PO-Revision-Date : 2020-05-15 18:57 +0200\n "
15
15
"Last-Translator : \n "
16
16
"Language : es\n "
17
17
"Language-Team : python-doc-esMIME-Version: 1.0\n "
@@ -1167,14 +1167,21 @@ msgid ""
1167
1167
"of the *value* argument, however there is a standard formatting syntax that "
1168
1168
"is used by most built-in types: :ref:`formatspec`."
1169
1169
msgstr ""
1170
+ "Convierte *value* a su representación “con formato”, de forma controlada por "
1171
+ "*format_spec*. La interpretación de *format_spec* dependerá del tipo del "
1172
+ "argumento *value*. Sin embargo, hay una sintaxis estándar de formato que "
1173
+ "emplean la mayoría de los tipos built-in: :ref:`formatspec`."
1170
1174
1171
1175
#: ../Doc/library/functions.rst:643
1172
1176
msgid ""
1173
1177
"The default *format_spec* is an empty string which usually gives the same "
1174
1178
"effect as calling :func:`str(value) <str>`."
1175
1179
msgstr ""
1180
+ "El *format_spec* por defecto es una cadena vacía que normalmente produce el "
1181
+ "mismo efecto que llamar a :func:`str(value) <str>`."
1176
1182
1177
1183
#: ../Doc/library/functions.rst:646
1184
+ #, fuzzy
1178
1185
msgid ""
1179
1186
"A call to ``format(value, format_spec)`` is translated to ``type(value)."
1180
1187
"__format__(value, format_spec)`` which bypasses the instance dictionary when "
@@ -1183,25 +1190,39 @@ msgid ""
1183
1190
"*format_spec* is non-empty, or if either the *format_spec* or the return "
1184
1191
"value are not strings."
1185
1192
msgstr ""
1193
+ "Una llamada a ``format(value, format_spec)`` se traduce a ``type(value)."
1194
+ "__format__(value, format_spec)`` , que sortea el diccionario de la instancia "
1195
+ "cuando busca por el método :meth:`__format__` del valor. Una excepción :exc:"
1196
+ "`TypeError` será lanzada si la búsqueda del método llega a :mod:`object` y "
1197
+ "*format_spec* no está vacío, o si *format_spec* o el valor de retorno no son "
1198
+ "cadenas."
1186
1199
1187
1200
#: ../Doc/library/functions.rst:653
1188
1201
msgid ""
1189
1202
"``object().__format__(format_spec)`` raises :exc:`TypeError` if "
1190
1203
"*format_spec* is not an empty string."
1191
1204
msgstr ""
1205
+ "``object().__format__(format_spec)`` lanza :exc:`TypeError` si *format_spec* "
1206
+ "no es una cadena vacía."
1192
1207
1193
1208
#: ../Doc/library/functions.rst:662
1194
1209
msgid ""
1195
1210
"Return a new :class:`frozenset` object, optionally with elements taken from "
1196
1211
"*iterable*. ``frozenset`` is a built-in class. See :class:`frozenset` and :"
1197
1212
"ref:`types-set` for documentation about this class."
1198
1213
msgstr ""
1214
+ "Devuelve un nuevo objeto :class:`frozenset` , opcionalmente con elementos "
1215
+ "tomados de *iterable*. ``frozenset`` es una clase built-in. Ver :class:"
1216
+ "`frozenset` y :ref:`types-set` para documentación sobre esta clase."
1199
1217
1200
1218
#: ../Doc/library/functions.rst:666
1201
1219
msgid ""
1202
1220
"For other containers see the built-in :class:`set`, :class:`list`, :class:"
1203
1221
"`tuple`, and :class:`dict` classes, as well as the :mod:`collections` module."
1204
1222
msgstr ""
1223
+ "Para otro tipo de contenedores, ver las clases built-in :class:`set`, :"
1224
+ "class:`list`, :class:`tuple`, y :class:`dict`, así como el módulo :mod:"
1225
+ "`collections`."
1205
1226
1206
1227
#: ../Doc/library/functions.rst:673
1207
1228
msgid ""
0 commit comments