Movatterモバイル変換


[0]ホーム

URL:


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

Sign up
Appearance settings

Ajuste '//' por 'división entera a la baja'#2801

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
cacrespo merged 8 commits intopython:3.12fromjcaalzago:division_a_la_baja_3
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletionslibrary/datetime.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,15 +11,16 @@ msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-10-12 19:43+0200\n"
"PO-Revision-Date:2021-08-07 16:13+0200\n"
"PO-Revision-Date:2024-01-26 16:12+0100\n"
"Last-Translator: Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n"
"Language: es_ES\n"
"Language-Team: python-doc-es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.13.0\n"
"X-Generator: Poedit 3.0.1\n"

#: ../Doc/library/datetime.rst:2
msgid ":mod:`datetime` --- Basic date and time types"
Expand DownExpand Up@@ -780,11 +781,11 @@ msgid ""
"the :func:`divmod` function. True division and multiplication of a :class:"
"`timedelta` object by a :class:`float` object are now supported."
msgstr ""
"La divisiónde pisoy la división verdadera de un objeto :class:`timedelta`"
"porotro :class:`timedelta` ahora son compatibles, al igual que las "
"operacionesrestantesy la función :func:`divmod`. La división verdadera y "
"multiplicación de un objeto :class:`timedelta` por un objeto:class:"
"`flotante` ahora son compatibles."
"La divisiónentera a la bajay la división verdadera de un objeto :class:"
"`timedelta` entreotro :class:`timedelta` ahora son compatibles, al igual "
"que lasoperacionesde restoy la función :func:`divmod`. La división "
"verdadera ymultiplicación de un objeto :class:`timedelta` por un objeto :"
"class:`float` ahora son compatibles."

#: ../Doc/library/datetime.rst:403
msgid ""
Expand Down
31 changes: 16 additions & 15 deletionswhatsnew/2.2.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,15 +11,16 @@ msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-10-12 19:43+0200\n"
"PO-Revision-Date:2021-08-07 10:12+0100\n"
"PO-Revision-Date:2024-01-21 18:26+0100\n"
"Last-Translator: Claudia Millan <clmilneb@gmail.com>\n"
"Language: es\n"
"Language-Team: python-doc-es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.13.0\n"
"X-Generator: Poedit 3.0.1\n"

#: ../Doc/whatsnew/2.2.rst:3
msgid "What's New in Python 2.2"
Expand DownExpand Up@@ -1271,16 +1272,16 @@ msgid ""
"operands are integers, and returns the result of true division when one of "
"the operands is a floating-point number."
msgstr ""
"En primer lugar, tomaré prestada alguna terminología de :pep:`238`.La "
"En primer lugar, tomaré prestada alguna terminología de :pep:`238`. La "
"\"división verdadera\" es la división con la que la mayoría de los no "
"programadores están familiarizados: 3/2 es 1,5, 1/4 es 0,25, y así "
"sucesivamente.La \"divisiónpor el piso\" es lo que hace actualmente el "
"operador ``/`` de Python cuando se le dan operandos enteros; el resultado es "
"elpisodel valor retornado por ladivisión verdadera. La \"división "
"clásica\" es el comportamiento mixto actual de ``/``; retorna el resultado"
"de la división porelsuelo cuando los operandos son enteros, y retorna el "
"resultado de la división verdadera cuando uno delos operandos es un número "
"de punto flotante."
"sucesivamente. La \"divisiónentera a la baja\" es lo que hace actualmente "
"eloperador ``/`` de Python cuando se le dan operandos enteros; el resultado "
"eselredondeo a la baja (*floor*)del valor retornado por la división "
"verdadera. La \"divisiónclásica\" es el comportamiento mixto actual de ``/"
"``; retornaelresultado de la división entera a la baja cuando los "
"operandos son enteros, y retorna el resultado dela división verdadera "
"cuando uno de los operandos es un númerode punto flotante."

#: ../Doc/whatsnew/2.2.rst:740
msgid "Here are the changes 2.2 introduces:"
Expand All@@ -1293,10 +1294,10 @@ msgid ""
"no matter what the types of its operands are, so ``1 // 2`` is 0 and "
"``1.0 // 2.0`` is also 0.0."
msgstr ""
"Un nuevo operador, ``//``, es el operador de divisiónpor el suelo. (Sí, ya "
"sabemos que se parece al símbolo de comentario de C++.) ``//`` *siempre* "
"realiza la divisiónpor el suelosin importar los tipos de sus operandos, "
"así que ``1 // 2`` es 0 y ``1.0 // 2.0`` también es 0.0."
"Un nuevo operador, ``//``, es el operador de divisiónentera a la baja. (Sí, "
"yasabemos que se parece al símbolo de comentario de C++.) ``//`` *siempre* "
"realiza la divisiónentera a la bajasin importar los tipos de sus "
"operandos,así que ``1 // 2`` es 0 y ``1.0 // 2.0`` también es 0.0."

#: ../Doc/whatsnew/2.2.rst:747
msgid ""
Expand Down
5 changes: 3 additions & 2 deletionswhatsnew/2.6.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-10-12 19:43+0200\n"
"PO-Revision-Date:2021-09-27 14:39-0300\n"
"PO-Revision-Date:2024-01-21 18:29+0100\n"
"Last-Translator: \n"
"Language-Team: python-doc-es\n"
"Language: es\n"
Expand All@@ -20,6 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.13.0\n"
"X-Generator: Poedit 3.0.1\n"

#: ../Doc/whatsnew/2.6.rst:5
msgid "What's New in Python 2.6"
Expand DownExpand Up@@ -2123,7 +2124,7 @@ msgid ""
msgstr ""
":class:`Real` deriva a su vez de :class:`Complex`, y añade operaciones que "
"sólo funcionan con números reales: :func:`floor`, :func:`trunc`, redondeo, "
"toma del resto mod N, divisiónpor defecto y comparaciones."
"toma del resto mod N, divisiónentera a la baja y comparaciones."

#: ../Doc/whatsnew/2.6.rst:1411
msgid ""
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp