Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a120514

Browse filesBrowse files
committed
Fix references
1 parent 4d2d045 commit a120514
Copy full SHA for a120514

File tree

Expand file treeCollapse file tree

1 file changed

+9
-8
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+9
-8
lines changed

‎library/numbers.po

Copy file name to clipboardExpand all lines: library/numbers.po
+9-8Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ msgstr ":mod:`numbers` --- Clase base abstracta numérica"
2626
#: ../Doc/library/numbers.rst:7
2727
msgid "**Source code:** :source:`Lib/numbers.py`"
2828
msgstr "**Código fuente:** :source:`Lib/numbers.py`"
29+
2930
# revisar como usamos "abstract base classes" en el glosario
3031
#: ../Doc/library/numbers.rst:11
3132
#, fuzzy
@@ -64,9 +65,9 @@ msgid ""
6465
msgstr ""
6566
"Las subclases de este tipo describen números complejos e incluyen las "
6667
"operaciones integradas del tipo :class:`complex`. Estas son: conversiones a :"
67-
"class:`complex` y :class:`bool`, :attr:`.real`, :attr:`."
68-
".imag`, ``+``, ``-``, ``*`, ``/``, 'func:`abs`, :meth:`conjugate`, "
69-
"``==``, y ``!=``. Todos excepto ``-`` y ``!=`` estos son abstractos."
68+
"class:`complex` y :class:`bool`, :attr:`.real`, :attr:`..imag`, ``+``, ``-"
69+
"``, ``*`, ``/``, :func:`abs`, :meth:`conjugate`, ``==``, y ``!=``. Todos "
70+
"excepto ``-`` y ``!=`` estos son abstractos."
7071

7172
#: ../Doc/library/numbers.rst:35
7273
msgid "Abstract. Retrieves the real component of this number."
@@ -118,9 +119,9 @@ msgid ""
118119
"`~Rational.denominator` properties, which should be in lowest terms. With "
119120
"these, it provides a default for :func:`float`."
120121
msgstr ""
121-
"Hereda de :class:`Real` y agrega las propiedades :attr:`~Rational.numerator` y :"
122-
"attr:`~Rational.denominator`, que deberían estar en los términos más bajos. "
123-
"Con esto, se proporciona un valor predeterminado a :func:`float`."
122+
"Hereda de :class:`Real` y agrega las propiedades :attr:`~Rational.numerator` "
123+
"y :attr:`~Rational.denominator`, que deberían estar en los términos más "
124+
"bajos. Con esto, se proporciona un valor predeterminado a :func:`float`."
124125

125126
#: ../Doc/library/numbers.rst:68 ../Doc/library/numbers.rst:72
126127
msgid "Abstract."
@@ -176,14 +177,14 @@ msgid "Implementing the arithmetic operations"
176177
msgstr "Implementar operaciones aritméticas"
177178

178179
#: ../Doc/library/numbers.rst:121
179-
#, fuzzy
180180
msgid ""
181181
"We want to implement the arithmetic operations so that mixed-mode operations "
182182
"either call an implementation whose author knew about the types of both "
183183
"arguments, or convert both to the nearest built in type and do the operation "
184184
"there. For subtypes of :class:`Integral`, this means that :meth:`__add__` "
185185
"and :meth:`__radd__` should be defined as::"
186186
msgstr ""
187+
187188
# boilerplate -> repetitivo --revisar en todo el archivo
188189
#: ../Doc/library/numbers.rst:152
189190
#, fuzzy
@@ -213,7 +214,7 @@ msgid ""
213214
"`__add__` at all.)"
214215
msgstr ""
215216
"Si ``A`` recurre al código repetitivo y devuelve un valor de :meth:"
216-
"`__add__`, perderíamos la posibilidad de que B defina un __radd __() más "
217+
"`__add__`, perderíamos la posibilidad de que B defina un :meth:`__radd __` más "
217218
"inteligente, por lo que el código repetitivo debería devolver :const:"
218219
"`NotImplemented` de :meth:`__add__`. (O ``A`` no puede implementar :meth:"
219220
"`__add__` en absoluto.)"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.