|
| 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 | +# Rafael Fontenelle <rffontenelle@gmail.com>, 2025 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.10\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2025-07-11 17:17+0000\n" |
| 15 | +"PO-Revision-Date: 2022-11-05 17:21+0000\n" |
| 16 | +"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 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 "Code Objects" |
| 27 | +msgstr "Objek Kode" |
| 28 | + |
| 29 | +msgid "" |
| 30 | +"Code objects are a low-level detail of the CPython implementation. Each one " |
| 31 | +"represents a chunk of executable code that hasn't yet been bound into a " |
| 32 | +"function." |
| 33 | +msgstr "" |
| 34 | + |
| 35 | +msgid "" |
| 36 | +"The C structure of the objects used to describe code objects. The fields of " |
| 37 | +"this type are subject to change at any time." |
| 38 | +msgstr "" |
| 39 | + |
| 40 | +msgid "" |
| 41 | +"This is an instance of :c:type:`PyTypeObject` representing the Python :class:" |
| 42 | +"`code` type." |
| 43 | +msgstr "" |
| 44 | + |
| 45 | +msgid "" |
| 46 | +"Return true if *co* is a :class:`code` object. This function always " |
| 47 | +"succeeds." |
| 48 | +msgstr "" |
| 49 | + |
| 50 | +msgid "Return the number of free variables in *co*." |
| 51 | +msgstr "" |
| 52 | + |
| 53 | +msgid "" |
| 54 | +"Return a new code object. If you need a dummy code object to create a " |
| 55 | +"frame, use :c:func:`PyCode_NewEmpty` instead. Calling :c:func:`PyCode_New` " |
| 56 | +"directly can bind you to a precise Python version since the definition of " |
| 57 | +"the bytecode changes often." |
| 58 | +msgstr "" |
| 59 | + |
| 60 | +msgid "" |
| 61 | +"Similar to :c:func:`PyCode_New`, but with an extra \"posonlyargcount\" for " |
| 62 | +"positional-only arguments." |
| 63 | +msgstr "" |
| 64 | + |
| 65 | +msgid "" |
| 66 | +"Return a new empty code object with the specified filename, function name, " |
| 67 | +"and first line number. It is illegal to :func:`exec` or :func:`eval` the " |
| 68 | +"resulting code object." |
| 69 | +msgstr "" |
| 70 | + |
| 71 | +msgid "" |
| 72 | +"Return the line number of the instruction that occurs on or before " |
| 73 | +"``byte_offset`` and ends after it. If you just need the line number of a " |
| 74 | +"frame, use :c:func:`PyFrame_GetLineNumber` instead." |
| 75 | +msgstr "" |
| 76 | + |
| 77 | +msgid "" |
| 78 | +"For efficiently iterating over the line numbers in a code object, use `the " |
| 79 | +"API described in PEP 626 <https://www.python.org/dev/peps/pep-0626/#out-of-" |
| 80 | +"process-debuggers-and-profilers>`_." |
| 81 | +msgstr "" |
0 commit comments