@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.12\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2024-10-26 20:45 +0000\n "
14+ "POT-Creation-Date : 2024-11-08 14:48 +0000\n "
1515"PO-Revision-Date : 2024-05-11 00:33+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -236,31 +236,27 @@ msgstr ""
236236
237237msgid ""
238238"Whether or not two values are considered close is determined according to "
239- "given absolute and relative tolerances."
239+ "given absolute and relative tolerances. If no errors occur, the result will "
240+ "be: ``abs(a-b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)``."
240241msgstr ""
241- "To czy dwie wartości są zbliżone do siebie, zależy od dostarczonej "
242- "absolutnej lub relatywnej tolerancji."
243242
244243msgid ""
245244"*rel_tol* is the relative tolerance -- it is the maximum allowed difference "
246245"between *a* and *b*, relative to the larger absolute value of *a* or *b*. "
247246"For example, to set a tolerance of 5%, pass ``rel_tol=0.05``. The default "
248247"tolerance is ``1e-09``, which assures that the two values are the same "
249- "within about 9 decimal digits. *rel_tol* must be greater than zero."
248+ "within about 9 decimal digits. *rel_tol* must be nonnegative and less than "
249+ "``1.0``."
250250msgstr ""
251251
252252msgid ""
253- "*abs_tol* is the minimum absolute tolerance -- useful for comparisons near "
254- "zero. *abs_tol* must be at least zero."
253+ "*abs_tol* is the absolute tolerance; it defaults to ``0.0`` and it must be "
254+ "nonnegative. When comparing ``x`` to ``0.0``, ``isclose(x, 0)`` is computed "
255+ "as ``abs(x) <= rel_tol * abs(x)``, which is ``False`` for any ``x`` and "
256+ "rel_tol less than ``1.0``. So add an appropriate positive abs_tol argument "
257+ "to the call."
255258msgstr ""
256259
257- msgid ""
258- "If no errors occur, the result will be: ``abs(a-b) <= max(rel_tol * "
259- "max(abs(a), abs(b)), abs_tol)``."
260- msgstr ""
261- "Jeżeli nie wystąpi żaden błąd wynikiem będzie:\n"
262- " ``abs(a-b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)``."
263-
264260msgid ""
265261"The IEEE 754 special values of ``NaN``, ``inf``, and ``-inf`` will be "
266262"handled according to IEEE rules. Specifically, ``NaN`` is not considered "
0 commit comments