@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.12\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-02-07 14:52 +0000\n "
14+ "POT-Creation-Date :2025-02-14 14:53 +0000\n "
1515"PO-Revision-Date :2024-05-11 00:33+0000\n "
1616"Last-Translator :Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1717"Language-Team :Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -469,6 +469,10 @@ msgid ""
469469">>> Decimal(-7) % Decimal(4)\n"
470470"Decimal('-3')"
471471msgstr ""
472+ ">>> (-7) % 4\n"
473+ "1\n"
474+ ">>> Decimal(-7) % Decimal(4)\n"
475+ "Decimal('-3')"
472476
473477msgid ""
474478"The integer division operator ``//`` behaves analogously, returning the "
@@ -482,6 +486,10 @@ msgid ""
482486">>> Decimal(-7) // Decimal(4)\n"
483487"Decimal('-1')"
484488msgstr ""
489+ ">>> -7 // 4\n"
490+ "-2\n"
491+ ">>> Decimal(-7) // Decimal(4)\n"
492+ "Decimal('-1')"
485493
486494msgid ""
487495"The ``%`` and ``//`` operators implement the ``remainder`` and ``divide-"
@@ -646,6 +654,14 @@ msgid ""
646654">>> Decimal.from_float(float('-inf'))\n"
647655"Decimal('-Infinity')"
648656msgstr ""
657+ ">>> Decimal.from_float(0.1)\n"
658+ "Decimal('0.1000000000000000055511151231257827021181583404541015625')\n"
659+ ">>> Decimal.from_float(float('nan'))\n"
660+ "Decimal('NaN')\n"
661+ ">>> Decimal.from_float(float('inf'))\n"
662+ "Decimal('Infinity')\n"
663+ ">>> Decimal.from_float(float('-inf'))\n"
664+ "Decimal('-Infinity')"
649665
650666msgid ""
651667"Fused multiply-add. Return self*other+third with no rounding of the "
@@ -1207,6 +1223,8 @@ msgid ""
12071223">>> Context(prec=6, Emax=999, clamp=1).create_decimal('1.23e999')\n"
12081224"Decimal('1.23000E+999')"
12091225msgstr ""
1226+ ">>> Context(prec=6, Emax=999, clamp=1).create_decimal('1.23e999')\n"
1227+ "Decimal('1.23000E+999')"
12101228
12111229msgid ""
12121230"A *clamp* value of ``1`` allows compatibility with the fixed-width decimal "
@@ -2180,6 +2198,8 @@ msgid ""
21802198">>> Decimal(math.pi)\n"
21812199"Decimal('3.141592653589793115997963468544185161590576171875')"
21822200msgstr ""
2201+ ">>> Decimal(math.pi)\n"
2202+ "Decimal('3.141592653589793115997963468544185161590576171875')"
21832203
21842204msgid ""
21852205"Q. Within a complex calculation, how can I make sure that I haven't gotten a "
@@ -2225,6 +2245,9 @@ msgid ""
22252245">>> +Decimal('1.23456789') # unary plus triggers rounding\n"
22262246"Decimal('1.23')"
22272247msgstr ""
2248+ ">>> getcontext().prec = 3\n"
2249+ ">>> +Decimal('1.23456789') # unary plus triggers rounding\n"
2250+ "Decimal('1.23')"
22282251
22292252msgid ""
22302253"Alternatively, inputs can be rounded upon creation using the :meth:`Context."