@@ -56158,7 +56158,7 @@ msgid ""
5615856158msgstr ""
5615956159
5616056160msgid "The modern interface provides:"
56161- msgstr ""
56161+ msgstr "W nowym interfejsie znajdują się: "
5616256162
5616356163msgid ""
5616456164"Encode the :term:`bytes-like object` *s* using Base64 and return the "
@@ -56243,6 +56243,13 @@ msgid ""
5624356243"purposes the default is ``None``, so that 0 and 1 are not allowed in the "
5624456244"input."
5624556245msgstr ""
56246+ ":rfc:`3548` zezwala na dodatkowe mapowanie cyfry 0 (zero) do litery O (o), i "
56247+ "opcjonalne mapowanie cyfry 1 (jeden) albo do litery I (i) lub litery L (el). "
56248+ "Opcjonalny parametr *map01* jeśli nie ``Żaden`` - z ang. - ``None``, określa "
56249+ "do których liter cyfra 1 powinna być zmapowana (gdy *map01* nie jest "
56250+ "``None``, cyfra 0 jest zawsze mapowana do litery O). Ze względów "
56251+ "bezpieczeństwa domyślnie jest to ``Żaden`` - z ang. - ``None``, więc 0 i 1 "
56252+ "nie są pozwalane w ciągu wejściowym. "
5624656253
5624756254msgid ""
5624856255"A :exc:`binascii.Error` is raised if *s* is incorrectly padded or if there "
@@ -56326,7 +56333,7 @@ msgid ""
5632656333msgstr ""
5632756334
5632856335msgid "The legacy interface:"
56329- msgstr ""
56336+ msgstr "Przestarzały interfejs: "
5633056337
5633156338msgid ""
5633256339"Decode the contents of the binary *input* file and write the resulting "
@@ -56363,7 +56370,7 @@ msgid "Deprecated alias of :func:`encodebytes`."
5636356370msgstr ""
5636456371
5636556372msgid "An example usage of the module:"
56366- msgstr ""
56373+ msgstr "Przykładowe użycie modułu: "
5636756374
5636856375msgid "Module :mod:`binascii`"
5636956376msgstr ""
@@ -56384,6 +56391,8 @@ msgid ""
5638456391"Section 5.2, \"Base64 Content-Transfer-Encoding,\" provides the definition "
5638556392"of the base64 encoding."
5638656393msgstr ""
56394+ "Sekcja 5.2, \"Base64 Treść-Transfer-Kodowanie,\" dostarcza definicji "
56395+ "kodowania base64."
5638756396
5638856397msgid ":mod:`bdb` --- Debugger framework"
5638956398msgstr ""
@@ -194846,20 +194855,32 @@ msgid ""
194846194855"the only value written. You can see it if you really want to using :func:"
194847194856"`print`::"
194848194857msgstr ""
194858+ "Przychodząc z innych języków, mógłbyś oponować, że ``fib`` nie jest funkcją, "
194859+ "ale procedurą, jako że nie zwraca wartości. Tak naprawdę nawet funkcje bez "
194860+ "instrukcji :keyword:`return` zwracają wartość, chociaż dość nudną. Tę "
194861+ "wartość nazywamy ``None`` (to wbudowana nazwa). Wypisywanie wartości "
194862+ "``None`` jest normalnie pomijane przez interpreter, jeśli miałaby to jedyna "
194863+ "wypisywana wartość. Możesz ją zobaczyć, jeśli bardzo chcesz, używając :func:"
194864+ "`print`::"
194849194865
194850194866msgid ""
194851194867"It is simple to write a function that returns a list of the numbers of the "
194852194868"Fibonacci series, instead of printing it::"
194853194869msgstr ""
194870+ "Prosto można napisać funkcję, która zwraca listę numerów ciągu Fibonnaciego "
194871+ "zamiast go wyświetlać::"
194854194872
194855194873msgid "This example, as usual, demonstrates some new Python features:"
194856- msgstr ""
194874+ msgstr "Ten przykład, jak zazwyczaj, prezentuje nowe cechy Pythona: "
194857194875
194858194876msgid ""
194859194877"The :keyword:`return` statement returns with a value from a function. :"
194860194878"keyword:`!return` without an expression argument returns ``None``. Falling "
194861194879"off the end of a function also returns ``None``."
194862194880msgstr ""
194881+ "Instrukcja :keyword:`return` zwraca wartość funkcji. :keyword:`!return` bez "
194882+ "wyrażenia podanego jako argument zwraca ``None``. Dojście do końca funkcji "
194883+ "również zwraca ``None``."
194863194884
194864194885msgid ""
194865194886"The statement ``result.append(a)`` calls a *method* of the list object "
0 commit comments