|
5 | 5 | #
|
6 | 6 | # Translators:
|
7 | 7 | # haaritsubaki, 2024
|
| 8 | +# Maciej Olko <[email protected]>, 2025 |
8 | 9 | #
|
9 | 10 | #, fuzzy
|
10 | 11 | msgid ""
|
11 | 12 | msgstr ""
|
12 | 13 | "Project-Id-Version: Python 3.14\n"
|
13 | 14 | "Report-Msgid-Bugs-To: \n"
|
14 |
| -"POT-Creation-Date: 2025-07-04 14:20+0000\n" |
| 15 | +"POT-Creation-Date: 2025-07-11 14:21+0000\n" |
15 | 16 | "PO-Revision-Date: 2021-06-28 00:48+0000\n"
|
16 |
| -"Last-Translator: haaritsubaki, 2024\n" |
| 17 | +" Last-Translator: Maciej Olko <[email protected]>, 2025\n" |
17 | 18 | "Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
|
18 | 19 | "MIME-Version: 1.0\n"
|
19 | 20 | "Content-Type: text/plain; charset=UTF-8\n"
|
@@ -221,6 +222,88 @@ msgid ""
|
221 | 222 | "it before returning."
|
222 | 223 | msgstr ""
|
223 | 224 |
|
| 225 | +msgid "Code Object Flags" |
| 226 | +msgstr "" |
| 227 | + |
| 228 | +msgid "" |
| 229 | +"Code objects contain a bit-field of flags, which can be retrieved as the :" |
| 230 | +"attr:`~codeobject.co_flags` Python attribute (for example using :c:func:" |
| 231 | +"`PyObject_GetAttrString`), and set using a *flags* argument to :c:func:" |
| 232 | +"`PyUnstable_Code_New` and similar functions." |
| 233 | +msgstr "" |
| 234 | + |
| 235 | +msgid "" |
| 236 | +"Flags whose names start with ``CO_FUTURE_`` correspond to features normally " |
| 237 | +"selectable by :ref:`future statements <future>`. These flags can be used in :" |
| 238 | +"c:member:`PyCompilerFlags.cf_flags`. Note that many ``CO_FUTURE_`` flags are " |
| 239 | +"mandatory in current versions of Python, and setting them has no effect." |
| 240 | +msgstr "" |
| 241 | + |
| 242 | +msgid "" |
| 243 | +"The following flags are available. For their meaning, see the linked " |
| 244 | +"documentation of their Python equivalents." |
| 245 | +msgstr "" |
| 246 | + |
| 247 | +msgid "Flag" |
| 248 | +msgstr "" |
| 249 | + |
| 250 | +msgid "Meaning" |
| 251 | +msgstr "Znaczenie" |
| 252 | + |
| 253 | +msgid ":py:data:`inspect.CO_OPTIMIZED`" |
| 254 | +msgstr "" |
| 255 | + |
| 256 | +msgid ":py:data:`inspect.CO_NEWLOCALS`" |
| 257 | +msgstr "" |
| 258 | + |
| 259 | +msgid ":py:data:`inspect.CO_VARARGS`" |
| 260 | +msgstr "" |
| 261 | + |
| 262 | +msgid ":py:data:`inspect.CO_VARKEYWORDS`" |
| 263 | +msgstr "" |
| 264 | + |
| 265 | +msgid ":py:data:`inspect.CO_NESTED`" |
| 266 | +msgstr "" |
| 267 | + |
| 268 | +msgid ":py:data:`inspect.CO_GENERATOR`" |
| 269 | +msgstr "" |
| 270 | + |
| 271 | +msgid ":py:data:`inspect.CO_COROUTINE`" |
| 272 | +msgstr "" |
| 273 | + |
| 274 | +msgid ":py:data:`inspect.CO_ITERABLE_COROUTINE`" |
| 275 | +msgstr "" |
| 276 | + |
| 277 | +msgid ":py:data:`inspect.CO_ASYNC_GENERATOR`" |
| 278 | +msgstr "" |
| 279 | + |
| 280 | +msgid ":py:data:`inspect.CO_HAS_DOCSTRING`" |
| 281 | +msgstr "" |
| 282 | + |
| 283 | +msgid ":py:data:`inspect.CO_METHOD`" |
| 284 | +msgstr "" |
| 285 | + |
| 286 | +msgid "no effect (:py:data:`__future__.division`)" |
| 287 | +msgstr "" |
| 288 | + |
| 289 | +msgid "no effect (:py:data:`__future__.absolute_import`)" |
| 290 | +msgstr "" |
| 291 | + |
| 292 | +msgid "no effect (:py:data:`__future__.with_statement`)" |
| 293 | +msgstr "" |
| 294 | + |
| 295 | +msgid "no effect (:py:data:`__future__.print_function`)" |
| 296 | +msgstr "" |
| 297 | + |
| 298 | +msgid "no effect (:py:data:`__future__.unicode_literals`)" |
| 299 | +msgstr "" |
| 300 | + |
| 301 | +msgid "no effect (:py:data:`__future__.generator_stop`)" |
| 302 | +msgstr "" |
| 303 | + |
| 304 | +msgid ":py:data:`__future__.annotations`" |
| 305 | +msgstr "" |
| 306 | + |
224 | 307 | msgid "Extra information"
|
225 | 308 | msgstr ""
|
226 | 309 |
|
|
0 commit comments