88# Igor Zubrycki <igorzubrycki@gmail.com>, 2021
99# Maciej Olko <maciej.olko@gmail.com>, 2023
1010# haaritsubaki, 2023
11- # Stan Ulbrych, 2024
11+ # Stan Ulbrych, 2025
1212#
1313#, fuzzy
1414msgid ""
@@ -17,7 +17,7 @@ msgstr ""
1717"Report-Msgid-Bugs-To : \n "
1818"POT-Creation-Date : 2025-04-18 14:18+0000\n "
1919"PO-Revision-Date : 2021-06-28 00:49+0000\n "
20- "Last-Translator : Stan Ulbrych, 2024 \n "
20+ "Last-Translator : Stan Ulbrych, 2025 \n "
2121"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
2222"MIME-Version : 1.0\n "
2323"Content-Type : text/plain; charset=UTF-8\n "
@@ -60,6 +60,11 @@ msgid ""
6060"applications since its early existence, the process of embedding Python is "
6161"less straightforward than writing an extension."
6262msgstr ""
63+ "Napisanie moduł rozszerzeń jest stosunkowo dobrze zrozumiałym procesem, w "
64+ "którym dobrze sprawdza się podejście \" książki kucharskiej\" . Istnieje "
65+ "kilka narzędzi, które w pewnym stopniu automatyzują ten proces. Ludzie "
66+ "wbudowali Pythona w innych aplikacja od początku jego istnienia, proces "
67+ "wbudowania Pythona jest mniej prosty niż pisanie rozszerzenia."
6368
6469msgid ""
6570"Many API functions are useful independent of whether you're embedding or "
@@ -77,7 +82,7 @@ msgstr ""
7782"aplikacji."
7883
7984msgid "Coding standards"
80- msgstr ""
85+ msgstr "Standardy kodowania "
8186
8287msgid ""
8388"If you're writing C code for inclusion in CPython, you **must** follow the "
@@ -86,6 +91,11 @@ msgid ""
8691"these conventions is not necessary for your own third party extension "
8792"modules, unless you eventually expect to contribute them to Python."
8893msgstr ""
94+ "Jeśli piszesz C do umieszczenia w CPythonie **musisz** przestrzegać "
95+ "wytycznych standardów zdefiniowanych w :PEP:`7`. Wytyczne te obowiązują "
96+ "niezależnie od tego, do której wersji Pythona wnosisz swój wkład. "
97+ "Przestrzeganie tych konwencji nie jest konieczne dla własnych rozszerzeń, "
98+ "chyba że ostatecznie spodziewasz się wnieść je do Python."
8999
90100msgid "Include Files"
91101msgstr "Pliki Włączania - z ang. Include"
@@ -102,12 +112,17 @@ msgid ""
102112"#define PY_SSIZE_T_CLEAN\n"
103113"#include <Python.h>"
104114msgstr ""
115+ "#define PY_SSIZE_T_CLEAN\n"
116+ "#include <Python.h>"
105117
106118msgid ""
107119"This implies inclusion of the following standard headers: ``<stdio.h>``, "
108120"``<string.h>``, ``<errno.h>``, ``<limits.h>``, ``<assert.h>`` and ``<stdlib."
109121"h>`` (if available)."
110122msgstr ""
123+ "Oznacza to włączenie następujących standardowych nagłówek: ``<stdio.h>``, "
124+ "``<string.h>``, ``<errno.h>``, ``<limits.h>``, ``<assert.h>`` i ``<stdlib."
125+ "h>`` (jeśli są dostępne)."
111126
112127msgid ""
113128"Since Python may define some pre-processor definitions which affect the "
@@ -122,6 +137,8 @@ msgid ""
122137"It is recommended to always define ``PY_SSIZE_T_CLEAN`` before including "
123138"``Python.h``. See :ref:`arg-parsing` for a description of this macro."
124139msgstr ""
140+ "Zaleca się, aby zawsze definiować ``PY_SSIZE_T_CLEAN`` przed włączeniem "
141+ "``Python.h``. Zobacz :ref:`arg-parsing` dla opisu tego makro."
125142
126143msgid ""
127144"All user visible names defined by Python.h (except those defined by the "
0 commit comments