|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001-2023, 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 | +# Maciej Olko <[email protected]>, 2023 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.11\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2023-05-12 14:12+0000\n" |
| 15 | +"PO-Revision-Date: 2021-06-28 00:54+0000\n" |
| 16 | +" Last-Translator: Maciej Olko <[email protected]>, 2023\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 ":mod:`__future__` --- Future statement definitions" |
| 27 | +msgstr "" |
| 28 | + |
| 29 | +msgid "**Source code:** :source:`Lib/__future__.py`" |
| 30 | +msgstr "" |
| 31 | + |
| 32 | +msgid ":mod:`__future__` is a real module, and serves three purposes:" |
| 33 | +msgstr "" |
| 34 | + |
| 35 | +msgid "" |
| 36 | +"To avoid confusing existing tools that analyze import statements and expect " |
| 37 | +"to find the modules they're importing." |
| 38 | +msgstr "" |
| 39 | + |
| 40 | +msgid "" |
| 41 | +"To ensure that :ref:`future statements <future>` run under releases prior to " |
| 42 | +"2.1 at least yield runtime exceptions (the import of :mod:`__future__` will " |
| 43 | +"fail, because there was no module of that name prior to 2.1)." |
| 44 | +msgstr "" |
| 45 | + |
| 46 | +msgid "" |
| 47 | +"To document when incompatible changes were introduced, and when they will be " |
| 48 | +"--- or were --- made mandatory. This is a form of executable documentation, " |
| 49 | +"and can be inspected programmatically via importing :mod:`__future__` and " |
| 50 | +"examining its contents." |
| 51 | +msgstr "" |
| 52 | + |
| 53 | +msgid "Each statement in :file:`__future__.py` is of the form::" |
| 54 | +msgstr "" |
| 55 | + |
| 56 | +msgid "" |
| 57 | +"where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both " |
| 58 | +"are 5-tuples of the same form as :data:`sys.version_info`::" |
| 59 | +msgstr "" |
| 60 | + |
| 61 | +msgid "" |
| 62 | +"*OptionalRelease* records the first release in which the feature was " |
| 63 | +"accepted." |
| 64 | +msgstr "" |
| 65 | + |
| 66 | +msgid "" |
| 67 | +"In the case of a *MandatoryRelease* that has not yet occurred, " |
| 68 | +"*MandatoryRelease* predicts the release in which the feature will become " |
| 69 | +"part of the language." |
| 70 | +msgstr "" |
| 71 | + |
| 72 | +msgid "" |
| 73 | +"Else *MandatoryRelease* records when the feature became part of the " |
| 74 | +"language; in releases at or after that, modules no longer need a future " |
| 75 | +"statement to use the feature in question, but may continue to use such " |
| 76 | +"imports." |
| 77 | +msgstr "" |
| 78 | + |
| 79 | +msgid "" |
| 80 | +"*MandatoryRelease* may also be ``None``, meaning that a planned feature got " |
| 81 | +"dropped." |
| 82 | +msgstr "" |
| 83 | + |
| 84 | +msgid "" |
| 85 | +"Instances of class :class:`_Feature` have two corresponding methods, :meth:" |
| 86 | +"`getOptionalRelease` and :meth:`getMandatoryRelease`." |
| 87 | +msgstr "" |
| 88 | + |
| 89 | +msgid "" |
| 90 | +"*CompilerFlag* is the (bitfield) flag that should be passed in the fourth " |
| 91 | +"argument to the built-in function :func:`compile` to enable the feature in " |
| 92 | +"dynamically compiled code. This flag is stored in the :attr:`compiler_flag` " |
| 93 | +"attribute on :class:`_Feature` instances." |
| 94 | +msgstr "" |
| 95 | + |
| 96 | +msgid "" |
| 97 | +"No feature description will ever be deleted from :mod:`__future__`. Since " |
| 98 | +"its introduction in Python 2.1 the following features have found their way " |
| 99 | +"into the language using this mechanism:" |
| 100 | +msgstr "" |
| 101 | + |
| 102 | +msgid "feature" |
| 103 | +msgstr "" |
| 104 | + |
| 105 | +msgid "optional in" |
| 106 | +msgstr "" |
| 107 | + |
| 108 | +msgid "mandatory in" |
| 109 | +msgstr "" |
| 110 | + |
| 111 | +msgid "effect" |
| 112 | +msgstr "" |
| 113 | + |
| 114 | +msgid "nested_scopes" |
| 115 | +msgstr "" |
| 116 | + |
| 117 | +msgid "2.1.0b1" |
| 118 | +msgstr "" |
| 119 | + |
| 120 | +msgid "2.2" |
| 121 | +msgstr "" |
| 122 | + |
| 123 | +msgid ":pep:`227`: *Statically Nested Scopes*" |
| 124 | +msgstr "" |
| 125 | + |
| 126 | +msgid "generators" |
| 127 | +msgstr "" |
| 128 | + |
| 129 | +msgid "2.2.0a1" |
| 130 | +msgstr "" |
| 131 | + |
| 132 | +msgid "2.3" |
| 133 | +msgstr "" |
| 134 | + |
| 135 | +msgid ":pep:`255`: *Simple Generators*" |
| 136 | +msgstr "" |
| 137 | + |
| 138 | +msgid "division" |
| 139 | +msgstr "" |
| 140 | + |
| 141 | +msgid "2.2.0a2" |
| 142 | +msgstr "" |
| 143 | + |
| 144 | +msgid "3.0" |
| 145 | +msgstr "" |
| 146 | + |
| 147 | +msgid ":pep:`238`: *Changing the Division Operator*" |
| 148 | +msgstr "" |
| 149 | + |
| 150 | +msgid "absolute_import" |
| 151 | +msgstr "" |
| 152 | + |
| 153 | +msgid "2.5.0a1" |
| 154 | +msgstr "" |
| 155 | + |
| 156 | +msgid ":pep:`328`: *Imports: Multi-Line and Absolute/Relative*" |
| 157 | +msgstr "" |
| 158 | + |
| 159 | +msgid "with_statement" |
| 160 | +msgstr "" |
| 161 | + |
| 162 | +msgid "2.6" |
| 163 | +msgstr "" |
| 164 | + |
| 165 | +msgid ":pep:`343`: *The \"with\" Statement*" |
| 166 | +msgstr "" |
| 167 | + |
| 168 | +msgid "print_function" |
| 169 | +msgstr "" |
| 170 | + |
| 171 | +msgid "2.6.0a2" |
| 172 | +msgstr "" |
| 173 | + |
| 174 | +msgid ":pep:`3105`: *Make print a function*" |
| 175 | +msgstr "" |
| 176 | + |
| 177 | +msgid "unicode_literals" |
| 178 | +msgstr "" |
| 179 | + |
| 180 | +msgid ":pep:`3112`: *Bytes literals in Python 3000*" |
| 181 | +msgstr "" |
| 182 | + |
| 183 | +msgid "generator_stop" |
| 184 | +msgstr "" |
| 185 | + |
| 186 | +msgid "3.5.0b1" |
| 187 | +msgstr "" |
| 188 | + |
| 189 | +msgid "3.7" |
| 190 | +msgstr "" |
| 191 | + |
| 192 | +msgid ":pep:`479`: *StopIteration handling inside generators*" |
| 193 | +msgstr "" |
| 194 | + |
| 195 | +msgid "annotations" |
| 196 | +msgstr "anotacje" |
| 197 | + |
| 198 | +msgid "3.7.0b1" |
| 199 | +msgstr "" |
| 200 | + |
| 201 | +msgid "TBD [1]_" |
| 202 | +msgstr "" |
| 203 | + |
| 204 | +msgid ":pep:`563`: *Postponed evaluation of annotations*" |
| 205 | +msgstr "" |
| 206 | + |
| 207 | +msgid "" |
| 208 | +"``from __future__ import annotations`` was previously scheduled to become " |
| 209 | +"mandatory in Python 3.10, but the Python Steering Council twice decided to " |
| 210 | +"delay the change (`announcement for Python 3.10 <https://mail.python.org/" |
| 211 | +"archives/list/[email protected]/message/CLVXXPQ2T2LQ5MP2Y53VVQFCXYWQJHKZ/" |
| 212 | +">`__; `announcement for Python 3.11 <https://mail.python.org/archives/list/" |
| 213 | +"[email protected]/message/VIZEBX5EYMSYIJNDBF6DMUMZOCWHARSO/>`__). No " |
| 214 | +"final decision has been made yet. See also :pep:`563` and :pep:`649`." |
| 215 | +msgstr "" |
| 216 | + |
| 217 | +msgid ":ref:`future`" |
| 218 | +msgstr "" |
| 219 | + |
| 220 | +msgid "How the compiler treats future imports." |
| 221 | +msgstr "" |
0 commit comments