-
Notifications
You must be signed in to change notification settings - Fork 397
Traduccion library stdtypes #255
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
Changes from 1 commit
ffc8a79
9e28ba1
f336a0c
77e2d1e
d24eb44
6aae76e
e715ae3
0c45cfc
82e4057
934810a
c89a78d
73edec0
6c68c36
901032d
a606585
f9cda17
8a8d1a4
2d9da7d
c82d4c1
913b2cd
00ff815
f5906f1
aca3282
30c8224
82e10ad
f0265db
421af7c
5abd4b8
97878df
332a7e3
9705b44
078679d
53fbe59
392d9c2
aa38a43
0b6008d
6940c75
04cfe80
93d95e1
9d5457d
9b5557b
33ca912
a57f358
8cb0d38
595b77e
fde88fb
97eed89
f878a97
2f19110
632e497
4842560
8047a50
e06127a
c503cb1
2528114
d1fd296
5c17c24
b202c5b
70c75a2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -915,8 +915,8 @@ msgid "" | |||||||||
"The int type implements the :class:`numbers.Integral` :term:`abstract base " | ||||||||||
"class`. In addition, it provides a few more methods:" | ||||||||||
msgstr "" | ||||||||||
"El tipo int implementa la :term:`clase abstracta` :class:`numbers.Integral`. " | ||||||||||
"Además, proporciona los siguientes métodos: " | ||||||||||
"El tipo int implementa la :term:`clase base abstracta` :class:`numbers." | ||||||||||
"Integral`. Además, proporciona los siguientes métodos: " | ||||||||||
|
||||||||||
#: ../Doc/library/stdtypes.rst:459 | ||||||||||
msgid "" | ||||||||||
|
@@ -995,8 +995,8 @@ msgid "" | |||||||||
"The argument *bytes* must either be a :term:`bytes-like object` or an " | ||||||||||
"iterable producing bytes." | ||||||||||
msgstr "" | ||||||||||
"El argumento *bytes* debe ser o bien un vector de bytes (:term:`bytes-like " | ||||||||||
"object`) o un iterable que produzca bytes." | ||||||||||
"El argumento *bytes* debe ser o bien un :term:`objeto tipo binario <bytes-" | ||||||||||
"like object>` o un iterable que produzca bytes." | ||||||||||
|
||||||||||
#: ../Doc/library/stdtypes.rst:540 | ||||||||||
msgid "" | ||||||||||
|
@@ -1042,7 +1042,7 @@ msgstr "" | |||||||||
"Devuelve una pareja de números enteros cuya proporción es exactamente igual " | ||||||||||
"que la del valor en coma flotante original, con un denominador positivo. Si " | ||||||||||
"se llama con valores infinitos eleva una excepción de tipo :exc:" | ||||||||||
"`OverflowError`y si se llama con *NaN* (*Not A Number*) eleva una excepción " | ||||||||||
"`OverflowError` y si se llama con *NaN* (*Not A Number*) eleva una excepción " | ||||||||||
"de tipo :exc:`ValueError`." | ||||||||||
|
||||||||||
#: ../Doc/library/stdtypes.rst:569 | ||||||||||
|
@@ -1376,8 +1376,8 @@ msgid "" | |||||||||
"`~generator.__next__` methods. More information about generators can be " | ||||||||||
"found in :ref:`the documentation for the yield expression <yieldexpr>`." | ||||||||||
msgstr "" | ||||||||||
"Los :term:`generadores` de Python proporcionan una manera cómoda de " | ||||||||||
"implementar el protocolo iterador. Si un objeto de tipo contenedor " | ||||||||||
"Los :term:`generadores <generador>` de Python proporcionan una manera cómoda " | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Estos
Suggested change
|
||||||||||
"de implementar el protocolo iterador. Si un objeto de tipo contenedor " | ||||||||||
"implementa el método :meth:`__iter__` como un generador, de forma automática " | ||||||||||
"este devolverá un objeto iterador (Técnicamente, un objeto generador) que " | ||||||||||
"implementa los métodos :meth:`__iter__` y :meth:`~generator.__next__`. Se " | ||||||||||
|
@@ -1575,7 +1575,8 @@ msgstr "" | |||||||||
"elementos en la misma posición. Esto significa que, para que se consideren " | ||||||||||
"iguales, todos los elementos correspondientes deben ser iguales entre si, y " | ||||||||||
"las dos secuencias deben ser del mismo tipo y de la misma longitud (Para más " | ||||||||||
"detalles, véase :ref:`comparaciones` en la referencia del lenguaje)." | ||||||||||
"detalles, véase :ref:`Comparaciones <stdcomparisons>` en la referencia del " | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lo mismo acá con los
Suggested change
|
||||||||||
"lenguaje)." | ||||||||||
|
||||||||||
#: ../Doc/library/stdtypes.rst:907 | ||||||||||
#, fuzzy | ||||||||||
|
@@ -1690,7 +1691,7 @@ msgid "" | |||||||||
"`str.join` at the end or else write to an :class:`io.StringIO` instance and " | ||||||||||
"retrieve its value when complete" | ||||||||||
msgstr "" | ||||||||||
"En vez de concatenar objetos de tipo :class:``str``, se puede construir una " | ||||||||||
"En vez de concatenar objetos de tipo :class:`str`, se puede construir una " | ||||||||||
"lista y usar finalmente el método :meth:`str.join`, o bien utilizar una " | ||||||||||
"instancia de la clase :class:`io.StringIO` y recuperar el valor final " | ||||||||||
"completo." | ||||||||||
|
@@ -2381,8 +2382,8 @@ msgid "" | |||||||||
"it only stores the ``start``, ``stop`` and ``step`` values, calculating " | ||||||||||
"individual items and subranges as needed)." | ||||||||||
msgstr "" | ||||||||||
"La ventaja de usar un objeto de tipo rango en vez de una lista (:class:" | ||||||||||
"`list`) o una tupla (:class:`tuple`) es que el rango siempre usa una " | ||||||||||
"La ventaja de usar un objeto de tipo :class:`range` en vez de uno de tipo :" | ||||||||||
"class:`list` o :class:`tuple` es que con :class:`range` siempre se usa una " | ||||||||||
Comment on lines
+2369
to
+2370
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No menciona objeto el original.
Suggested change
|
||||||||||
"cantidad fija (y pequeña) de memoria, independientemente del rango que " | ||||||||||
"represente (Ya que solamente necesita almacenar los valores para ``start``, " | ||||||||||
"``stop`` y ``step``, y calcula los valores intermedios a medida que los va " | ||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No te suena mas "punto flotante"? Yo creo que coma flotante también se entiende, pero creo haber visto más punto. Lo dejo a tu criterio :P
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tendríamos que revisar esto a lo largo de todo el archivo. Creo que ví otros lugares donde se usaba "coma flotante" también.
Venimos usando "punto flotante" en otros archivos.