Skip to content

Commit 8392a36

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
Co-Authored-By: python-doc bot
1 parent a988700 commit 8392a36

File tree

6 files changed

+196
-5
lines changed

6 files changed

+196
-5
lines changed

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} Translators](https://img.shields.io/badge/Translators-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![Total Translation of Documentation](https://img.shields.io/badge/Total-5.670%25-0.svg)
16+
![Total Translation of Documentation](https://img.shields.io/badge/Total-5.668%25-0.svg)
1717
![4 Translators](https://img.shields.io/badge/Translators-4-0.svg)
1818
<!-- [[[end]]] -->
1919

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-5.670%25-0.svg)
16+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-5.668%25-0.svg)
1717
![4 tłumaczy](https://img.shields.io/badge/tłumaczy-4-0.svg)
1818
<!-- [[[end]]] -->
1919

c-api/concrete.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-11 15:06+0000\n"
14+
"POT-Creation-Date: 2025-11-17 15:03+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:03+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/picklebuffer.po

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2025, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# python-doc bot, 2025
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.13\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2025-11-17 15:03+0000\n"
15+
"PO-Revision-Date: 2025-11-17 15:05+0000\n"
16+
"Last-Translator: python-doc bot, 2025\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "Pickle buffer objects"
27+
msgstr ""
28+
29+
msgid ""
30+
"A :class:`pickle.PickleBuffer` object wraps a :ref:`buffer-providing object "
31+
"<bufferobjects>` for out-of-band data transfer with the :mod:`pickle` module."
32+
msgstr ""
33+
34+
msgid ""
35+
"This instance of :c:type:`PyTypeObject` represents the Python pickle buffer "
36+
"type. This is the same object as :class:`pickle.PickleBuffer` in the Python "
37+
"layer."
38+
msgstr ""
39+
40+
msgid ""
41+
"Return true if *op* is a pickle buffer instance. This function always "
42+
"succeeds."
43+
msgstr ""
44+
45+
msgid "Create a pickle buffer from the object *obj*."
46+
msgstr ""
47+
48+
msgid ""
49+
"This function will fail if *obj* doesn't support the :ref:`buffer protocol "
50+
"<bufferobjects>`."
51+
msgstr ""
52+
53+
msgid ""
54+
"On success, return a new pickle buffer instance. On failure, set an "
55+
"exception and return ``NULL``."
56+
msgstr ""
57+
58+
msgid "Analogous to calling :class:`pickle.PickleBuffer` with *obj* in Python."
59+
msgstr ""
60+
61+
msgid ""
62+
"Get a pointer to the underlying :c:type:`Py_buffer` that the pickle buffer "
63+
"wraps."
64+
msgstr ""
65+
66+
msgid ""
67+
"The returned pointer is valid as long as *picklebuf* is alive and has not "
68+
"been released. The caller must not modify or free the returned :c:type:"
69+
"`Py_buffer`. If the pickle buffer has been released, raise :exc:`ValueError`."
70+
msgstr ""
71+
72+
msgid ""
73+
"On success, return a pointer to the buffer view. On failure, set an "
74+
"exception and return ``NULL``."
75+
msgstr ""
76+
77+
msgid "Release the underlying buffer held by the pickle buffer."
78+
msgstr ""
79+
80+
msgid ""
81+
"Return ``0`` on success. On failure, set an exception and return ``-1``."
82+
msgstr ""
83+
84+
msgid "Analogous to calling :meth:`pickle.PickleBuffer.release` in Python."
85+
msgstr ""
86+
87+
msgid "object"
88+
msgstr "obiekt"
89+
90+
msgid "PickleBuffer"
91+
msgstr ""

c-api/structures.po

Lines changed: 83 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-01 14:58+0000\n"
14+
"POT-Creation-Date: 2025-11-17 15:03+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:03+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -413,6 +413,21 @@ msgid ""
413413
"wrapper object calls."
414414
msgstr ""
415415

416+
msgid ""
417+
"The type object corresponding to Python C method objects. This is available "
418+
"as :class:`types.BuiltinMethodType` in the Python layer."
419+
msgstr ""
420+
421+
msgid ""
422+
"Return true if *op* is an instance of the :c:type:`PyCMethod_Type` type or a "
423+
"subtype of it. This function always succeeds."
424+
msgstr ""
425+
426+
msgid ""
427+
"This is the same as :c:func:`PyCMethod_Check`, but does not account for "
428+
"subtypes."
429+
msgstr ""
430+
416431
msgid ""
417432
"Turn *ml* into a Python :term:`callable` object. The caller must ensure that "
418433
"*ml* outlives the :term:`callable`. Typically, *ml* is defined as a static "
@@ -439,12 +454,79 @@ msgid ""
439454
"function. Must be set if :c:macro:`METH_METHOD` is set on ``ml->ml_flags``."
440455
msgstr ""
441456

457+
msgid ""
458+
"The type object corresponding to Python C function objects. This is "
459+
"available as :class:`types.BuiltinFunctionType` in the Python layer."
460+
msgstr ""
461+
462+
msgid ""
463+
"Return true if *op* is an instance of the :c:type:`PyCFunction_Type` type or "
464+
"a subtype of it. This function always succeeds."
465+
msgstr ""
466+
467+
msgid ""
468+
"This is the same as :c:func:`PyCFunction_Check`, but does not account for "
469+
"subtypes."
470+
msgstr ""
471+
442472
msgid "Equivalent to ``PyCMethod_New(ml, self, module, NULL)``."
443473
msgstr ""
444474

445475
msgid "Equivalent to ``PyCMethod_New(ml, self, NULL, NULL)``."
446476
msgstr ""
447477

478+
msgid ""
479+
"Get the function's flags on *func* as they were passed to :c:member:"
480+
"`~PyMethodDef.ml_flags`."
481+
msgstr ""
482+
483+
msgid ""
484+
"If *func* is not a C function object, this fails with an exception. *func* "
485+
"must not be ``NULL``."
486+
msgstr ""
487+
488+
msgid ""
489+
"This function returns the function's flags on success, and ``-1`` with an "
490+
"exception set on failure."
491+
msgstr ""
492+
493+
msgid ""
494+
"This is the same as :c:func:`PyCFunction_GetFlags`, but without error or "
495+
"type checking."
496+
msgstr ""
497+
498+
msgid ""
499+
"Get the function pointer on *func* as it was passed to :c:member:"
500+
"`~PyMethodDef.ml_meth`."
501+
msgstr ""
502+
503+
msgid ""
504+
"This function returns the function pointer on success, and ``NULL`` with an "
505+
"exception set on failure."
506+
msgstr ""
507+
508+
msgid ""
509+
"This is the same as :c:func:`PyCFunction_GetFunction`, but without error or "
510+
"type checking."
511+
msgstr ""
512+
513+
msgid ""
514+
"Get the \"self\" object on *func*. This is the object that would be passed "
515+
"to the first argument of a :c:type:`PyCFunction`. For C function objects "
516+
"created through a :c:type:`PyMethodDef` on a :c:type:`PyModuleDef`, this is "
517+
"the resulting module object."
518+
msgstr ""
519+
520+
msgid ""
521+
"This function returns a :term:`borrowed reference` to the \"self\" object on "
522+
"success, and ``NULL`` with an exception set on failure."
523+
msgstr ""
524+
525+
msgid ""
526+
"This is the same as :c:func:`PyCFunction_GetSelf`, but without error or type "
527+
"checking."
528+
msgstr ""
529+
448530
msgid "Accessing attributes of extension types"
449531
msgstr ""
450532

whatsnew/changelog.po

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-15 15:00+0000\n"
14+
"POT-Creation-Date: 2025-11-17 15:03+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:05+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -91,6 +91,13 @@ msgid ""
9191
"assume that threads are always available in Tcl 9 and later."
9292
msgstr ""
9393

94+
msgid ""
95+
":gh:`137109`: The :mod:`os.fork` and related forking APIs will no longer "
96+
"warn in the common case where Linux or macOS platform APIs return the number "
97+
"of threads in a process and find the answer to be 1 even when a :func:`os."
98+
"register_at_fork` ``after_in_parent=`` callback (re)starts a thread."
99+
msgstr ""
100+
94101
msgid ""
95102
":gh:`141314`: Fix assertion failure in :meth:`io.TextIOWrapper.tell` when "
96103
"reading files with standalone carriage return (``\\r``) line endings."
@@ -273,6 +280,11 @@ msgid ""
273280
"WriteTransport.write`."
274281
msgstr ""
275282

283+
msgid ""
284+
":gh:`136057`: Fixed the bug in :mod:`pdb` and :mod:`bdb` where ``next`` and "
285+
"``step`` can't go over the line if a loop exists in the line."
286+
msgstr ""
287+
276288
msgid ""
277289
":gh:`135307`: :mod:`email`: Fix exception in ``set_content()`` when encoding "
278290
"text and max_line_length is set to ``0`` or ``None`` (unlimited)."
@@ -308,6 +320,12 @@ msgid ""
308320
"the ``perf_jit`` backend. Patch by Pablo Galindo."
309321
msgstr ""
310322

323+
msgid ""
324+
":gh:`141312`: Fix the assertion failure in the ``__setstate__`` method of "
325+
"the range iterator when a non-integer argument is passed. Patch by Sergey "
326+
"Miryanov."
327+
msgstr ""
328+
311329
msgid ""
312330
":gh:`140939`: Fix memory leak when :class:`bytearray` or :class:`bytes` is "
313331
"formated with the ``%*b`` format with a large width that results in a :exc:"

0 commit comments

Comments
 (0)