@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.12\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2023-08-18 14:13+0000\n "
14+ "POT-Creation-Date : 2023-09-08 14:13+0000\n "
1515"PO-Revision-Date : 2021-06-28 00:49+0000\n "
1616"Last-Translator : haaritsubaki, 2023\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -45,27 +45,24 @@ msgid ""
4545msgstr ""
4646
4747msgid ""
48- "Return element of *o* corresponding to the string *key* or ``NULL`` on "
49- "failure. This is the equivalent of the Python expression ``o[key]``. See "
50- "also :c:func:`PyObject_GetItem `."
48+ "This is the same as :c:func:`PyObject_GetItem`, but *key* is specified as a : "
49+ "c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr: "
50+ "`PyObject* `."
5151msgstr ""
5252
5353msgid ""
54- "Map the string *key* to the value *v* in object *o*. Returns ``-1`` on "
55- "failure. This is the equivalent of the Python statement ``o[key] = v``. See "
56- "also :c:func:`PyObject_SetItem`. This function *does not* steal a reference "
57- "to *v*."
54+ "This is the same as :c:func:`PyObject_SetItem`, but *key* is specified as a :"
55+ "c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
56+ "`PyObject*`."
5857msgstr ""
5958
60- msgid ""
61- "Remove the mapping for the object *key* from the object *o*. Return ``-1`` "
62- "on failure. This is equivalent to the Python statement ``del o[key]``. This "
63- "is an alias of :c:func:`PyObject_DelItem`."
59+ msgid "This is an alias of :c:func:`PyObject_DelItem`."
6460msgstr ""
6561
6662msgid ""
67- "Remove the mapping for the string *key* from the object *o*. Return ``-1`` "
68- "on failure. This is equivalent to the Python statement ``del o[key]``."
63+ "This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as a :"
64+ "c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
65+ "`PyObject*`."
6966msgstr ""
7067
7168msgid ""
@@ -75,16 +72,21 @@ msgid ""
7572msgstr ""
7673
7774msgid ""
78- "Note that exceptions which occur while calling the :meth:`~object."
79- "__getitem__` method will get suppressed. To get error reporting use :c:func:"
75+ "Exceptions which occur when this calls :meth:`~object.__getitem__` method "
76+ "are silently ignored. For proper error handling, use :c:func:"
8077"`PyObject_GetItem()` instead."
8178msgstr ""
8279
8380msgid ""
84- "Note that exceptions which occur while calling the :meth:`~object."
85- "__getitem__` method and creating a temporary string object will get "
86- "suppressed. To get error reporting use :c:func:`PyMapping_GetItemString()` "
87- "instead."
81+ "This is the same as :c:func:`PyMapping_HasKey`, but *key* is specified as a :"
82+ "c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
83+ "`PyObject*`."
84+ msgstr ""
85+
86+ msgid ""
87+ "Exceptions that occur when this calls :meth:`~object.__getitem__` method or "
88+ "while creating the temporary :class:`str` object are silently ignored. For "
89+ "proper error handling, use :c:func:`PyMapping_GetItemString` instead."
8890msgstr ""
8991
9092msgid ""
0 commit comments