99#, fuzzy
1010msgid ""
1111msgstr ""
12- "Project-Id-Version : Python 3.14 \n "
12+ "Project-Id-Version : Python 3.15 \n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-04-23 15:47 +0000\n "
14+ "POT-Creation-Date : 2026-05-08 18:34 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -398,9 +398,11 @@ msgstr ""
398398
399399msgid ""
400400"For signed integer formats, :exc:`OverflowError` is raised if the value is "
401- "out of range for the C type. For unsigned integer formats, no range checking "
402- "is done --- the most significant bits are silently truncated when the "
403- "receiving field is too small to receive the value."
401+ "out of range for the C type. For unsigned integer formats, the most "
402+ "significant bits are silently truncated when the receiving field is too "
403+ "small to receive the value, and :exc:`DeprecationWarning` is emitted when "
404+ "the value is larger than the maximal value for the C type or less than the "
405+ "minimal value for the corresponding signed integer type of the same size."
404406msgstr ""
405407
406408msgid "``b`` (:class:`int`) [unsigned char]"
@@ -416,7 +418,8 @@ msgstr "``B`` (:class:`int`) [unsigned char]"
416418
417419msgid ""
418420"Convert a Python integer to a tiny integer without overflow checking, stored "
419- "in a C :c:expr:`unsigned char`."
421+ "in a C :c:expr:`unsigned char`. Convert a Python integer to a C :c:expr:"
422+ "`unsigned char`."
420423msgstr ""
421424
422425msgid "``h`` (:class:`int`) [short int]"
@@ -428,9 +431,7 @@ msgstr ""
428431msgid "``H`` (:class:`int`) [unsigned short int]"
429432msgstr ""
430433
431- msgid ""
432- "Convert a Python integer to a C :c:expr:`unsigned short int`, without "
433- "overflow checking."
434+ msgid "Convert a Python integer to a C :c:expr:`unsigned short int`."
434435msgstr ""
435436
436437msgid "``i`` (:class:`int`) [int]"
@@ -442,9 +443,7 @@ msgstr ""
442443msgid "``I`` (:class:`int`) [unsigned int]"
443444msgstr "``I`` (:class:`int`) [unsigned int]"
444445
445- msgid ""
446- "Convert a Python integer to a C :c:expr:`unsigned int`, without overflow "
447- "checking."
446+ msgid "Convert a Python integer to a C :c:expr:`unsigned int`."
448447msgstr ""
449448
450449msgid "``l`` (:class:`int`) [long int]"
@@ -456,9 +455,7 @@ msgstr ""
456455msgid "``k`` (:class:`int`) [unsigned long]"
457456msgstr "``k`` (:class:`int`) [unsigned long]"
458457
459- msgid ""
460- "Convert a Python integer to a C :c:expr:`unsigned long` without overflow "
461- "checking."
458+ msgid "Convert a Python integer to a C :c:expr:`unsigned long`."
462459msgstr ""
463460
464461msgid "Use :meth:`~object.__index__` if available."
@@ -473,9 +470,7 @@ msgstr ""
473470msgid "``K`` (:class:`int`) [unsigned long long]"
474471msgstr ""
475472
476- msgid ""
477- "Convert a Python integer to a C :c:expr:`unsigned long long` without "
478- "overflow checking."
473+ msgid "Convert a Python integer to a C :c:expr:`unsigned long long`."
479474msgstr ""
480475
481476msgid "``n`` (:class:`int`) [:c:type:`Py_ssize_t`]"
@@ -521,6 +516,13 @@ msgstr "``D`` (:class:`complex`) [Py_complex]"
521516msgid "Convert a Python complex number to a C :c:type:`Py_complex` structure."
522517msgstr ""
523518
519+ msgid ""
520+ "For unsigned integer formats ``B``, ``H``, ``I``, ``k`` and ``K``, :exc:"
521+ "`DeprecationWarning` is emitted when the value is larger than the maximal "
522+ "value for the C type or less than the minimal value for the corresponding "
523+ "signed integer type of the same size."
524+ msgstr ""
525+
524526msgid "Other objects"
525527msgstr "Inne obiekty"
526528
@@ -773,6 +775,21 @@ msgid ""
773775"}"
774776msgstr ""
775777
778+ msgid ""
779+ "Parse the parameters of a function that takes only array parameters into "
780+ "local variables (that is, a function using the :c:macro:`METH_FASTCALL` "
781+ "calling convention). Returns true on success; on failure, it returns false "
782+ "and raises the appropriate exception."
783+ msgstr ""
784+
785+ msgid ""
786+ "Parse the parameters of a function that takes both array and keyword "
787+ "parameters into local variables (that is, a function using the :c:macro:"
788+ "`METH_FASTCALL` ``|`` :c:macro:`METH_KEYWORDS` calling convention). Returns "
789+ "true on success; on failure, it returns false and raises the appropriate "
790+ "exception."
791+ msgstr ""
792+
776793msgid ""
777794"A simpler form of parameter retrieval which does not use a format string to "
778795"specify the types of the arguments. Functions which use this method to "
0 commit comments