@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.8\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2020-02-26 12:47 +0000\n "
14+ "POT-Creation-Date : 2020-08-20 14:53 +0000\n "
1515"PO-Revision-Date : 2020-05-30 11:47+0000\n "
1616"Last-Translator : m_aciek <maciej.olko@gmail.com>, 2020\n "
1717"Language-Team : Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -210,7 +210,7 @@ msgstr ""
210210msgid ""
211211"Requires that the Python object is a :class:`bytes` object, without "
212212"attempting any conversion. Raises :exc:`TypeError` if the object is not a "
213- "bytes object. The C variable may also be declared as :c:type:`PyObject\\ *`."
213+ "bytes object. The C variable may also be declared as :c:type:`PyObject*`."
214214msgstr ""
215215
216216msgid "``Y`` (:class:`bytearray`) [PyByteArrayObject \\ *]"
@@ -220,7 +220,7 @@ msgid ""
220220"Requires that the Python object is a :class:`bytearray` object, without "
221221"attempting any conversion. Raises :exc:`TypeError` if the object is not a :"
222222"class:`bytearray` object. The C variable may also be declared as :c:type:"
223- "`PyObject\\ *`."
223+ "`PyObject*`."
224224msgstr ""
225225
226226msgid "``u`` (:class:`str`) [const Py_UNICODE \\ *]"
@@ -275,7 +275,7 @@ msgstr ""
275275msgid ""
276276"Requires that the Python object is a Unicode object, without attempting any "
277277"conversion. Raises :exc:`TypeError` if the object is not a Unicode object. "
278- "The C variable may also be declared as :c:type:`PyObject\\ *`."
278+ "The C variable may also be declared as :c:type:`PyObject*`."
279279msgstr ""
280280
281281msgid "``w*`` (read-write :term:`bytes-like object`) [Py_buffer]"
@@ -298,13 +298,12 @@ msgstr ""
298298
299299msgid ""
300300"This format requires two arguments. The first is only used as input, and "
301- "must be a :c:type:`const char\\ *` which points to the name of an encoding as "
302- "a NUL-terminated string, or ``NULL``, in which case ``'utf-8'`` encoding is "
301+ "must be a :c:type:`const char*` which points to the name of an encoding as a "
302+ "NUL-terminated string, or ``NULL``, in which case ``'utf-8'`` encoding is "
303303"used. An exception is raised if the named encoding is not known to Python. "
304- "The second argument must be a :c:type:`char\\ *\\ *`; the value of the pointer "
305- "it references will be set to a buffer with the contents of the argument "
306- "text. The text will be encoded in the encoding specified by the first "
307- "argument."
304+ "The second argument must be a :c:type:`char**`; the value of the pointer it "
305+ "references will be set to a buffer with the contents of the argument text. "
306+ "The text will be encoded in the encoding specified by the first argument."
308307msgstr ""
309308
310309msgid ""
@@ -338,10 +337,10 @@ msgstr ""
338337
339338msgid ""
340339"It requires three arguments. The first is only used as input, and must be "
341- "a :c:type:`const char\\ *` which points to the name of an encoding as a NUL-"
340+ "a :c:type:`const char*` which points to the name of an encoding as a NUL-"
342341"terminated string, or ``NULL``, in which case ``'utf-8'`` encoding is used. "
343342"An exception is raised if the named encoding is not known to Python. The "
344- "second argument must be a :c:type:`char\\ * \\ *`; the value of the pointer it "
343+ "second argument must be a :c:type:`char* *`; the value of the pointer it "
345344"references will be set to a buffer with the contents of the argument text. "
346345"The text will be encoded in the encoding specified by the first argument. "
347346"The third argument must be a pointer to an integer; the referenced integer "
@@ -519,7 +518,7 @@ msgstr ""
519518msgid ""
520519"Store a Python object in a C object pointer. This is similar to ``O``, but "
521520"takes two C arguments: the first is the address of a Python type object, the "
522- "second is the address of the C variable (of type :c:type:`PyObject\\ *`) into "
521+ "second is the address of the C variable (of type :c:type:`PyObject*`) into "
523522"which the object pointer is stored. If the Python object does not have the "
524523"required type, :exc:`TypeError` is raised."
525524msgstr ""
@@ -530,13 +529,13 @@ msgstr ""
530529msgid ""
531530"Convert a Python object to a C variable through a *converter* function. "
532531"This takes two arguments: the first is a function, the second is the address "
533- "of a C variable (of arbitrary type), converted to :c:type:`void \\ *`. The "
532+ "of a C variable (of arbitrary type), converted to :c:type:`void *`. The "
534533"*converter* function in turn is called as follows::"
535534msgstr ""
536535
537536msgid ""
538537"where *object* is the Python object to be converted and *address* is the :c:"
539- "type:`void\\ *` argument that was passed to the :c:func:`PyArg_Parse\\ *` "
538+ "type:`void*` argument that was passed to the :c:func:`PyArg_Parse\\ *` "
540539"function. The returned *status* should be ``1`` for a successful conversion "
541540"and ``0`` if the conversion has failed. When the conversion fails, the "
542541"*converter* function should raise an exception and leave the content of "
@@ -706,13 +705,12 @@ msgid ""
706705"should be passed as *args*; it must actually be a tuple. The length of the "
707706"tuple must be at least *min* and no more than *max*; *min* and *max* may be "
708707"equal. Additional arguments must be passed to the function, each of which "
709- "should be a pointer to a :c:type:`PyObject\\ *` variable; these will be "
710- "filled in with the values from *args*; they will contain borrowed "
711- "references. The variables which correspond to optional parameters not given "
712- "by *args* will not be filled in; these should be initialized by the caller. "
713- "This function returns true on success and false if *args* is not a tuple or "
714- "contains the wrong number of elements; an exception will be set if there was "
715- "a failure."
708+ "should be a pointer to a :c:type:`PyObject*` variable; these will be filled "
709+ "in with the values from *args*; they will contain borrowed references. The "
710+ "variables which correspond to optional parameters not given by *args* will "
711+ "not be filled in; these should be initialized by the caller. This function "
712+ "returns true on success and false if *args* is not a tuple or contains the "
713+ "wrong number of elements; an exception will be set if there was a failure."
716714msgstr ""
717715
718716msgid ""
@@ -926,7 +924,7 @@ msgstr ""
926924msgid ""
927925"Convert *anything* to a Python object through a *converter* function. The "
928926"function is called with *anything* (which should be compatible with :c:type:"
929- "`void \\ *`) as its argument and should return a \" new\" Python object, or "
927+ "`void*`) as its argument and should return a \" new\" Python object, or "
930928"``NULL`` if an error occurred."
931929msgstr ""
932930
0 commit comments