|
| 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 "Weak Reference Objects" |
| 27 | +msgstr "Слабкі довідкові об’єкти" |
| 28 | + |
| 29 | +msgid "" |
| 30 | +"Python supports *weak references* as first-class objects. There are two " |
| 31 | +"specific object types which directly implement weak references. The first " |
| 32 | +"is a simple reference object, and the second acts as a proxy for the " |
| 33 | +"original object as much as it can." |
| 34 | +msgstr "" |
| 35 | + |
| 36 | +msgid "" |
| 37 | +"Return true if *ob* is either a reference or proxy object. This function " |
| 38 | +"always succeeds." |
| 39 | +msgstr "" |
| 40 | + |
| 41 | +msgid "" |
| 42 | +"Return true if *ob* is a reference object. This function always succeeds." |
| 43 | +msgstr "" |
| 44 | + |
| 45 | +msgid "Return true if *ob* is a proxy object. This function always succeeds." |
| 46 | +msgstr "" |
| 47 | + |
| 48 | +msgid "" |
| 49 | +"Return a weak reference object for the object *ob*. This will always return " |
| 50 | +"a new reference, but is not guaranteed to create a new object; an existing " |
| 51 | +"reference object may be returned. The second parameter, *callback*, can be " |
| 52 | +"a callable object that receives notification when *ob* is garbage collected; " |
| 53 | +"it should accept a single parameter, which will be the weak reference object " |
| 54 | +"itself. *callback* may also be ``None`` or ``NULL``. If *ob* is not a " |
| 55 | +"weakly referencable object, or if *callback* is not callable, ``None``, or " |
| 56 | +"``NULL``, this will return ``NULL`` and raise :exc:`TypeError`." |
| 57 | +msgstr "" |
| 58 | + |
| 59 | +msgid "" |
| 60 | +"Return a weak reference proxy object for the object *ob*. This will always " |
| 61 | +"return a new reference, but is not guaranteed to create a new object; an " |
| 62 | +"existing proxy object may be returned. The second parameter, *callback*, " |
| 63 | +"can be a callable object that receives notification when *ob* is garbage " |
| 64 | +"collected; it should accept a single parameter, which will be the weak " |
| 65 | +"reference object itself. *callback* may also be ``None`` or ``NULL``. If " |
| 66 | +"*ob* is not a weakly referencable object, or if *callback* is not callable, " |
| 67 | +"``None``, or ``NULL``, this will return ``NULL`` and raise :exc:`TypeError`." |
| 68 | +msgstr "" |
| 69 | + |
| 70 | +msgid "" |
| 71 | +"Return the referenced object from a weak reference, *ref*. If the referent " |
| 72 | +"is no longer live, returns :const:`Py_None`." |
| 73 | +msgstr "" |
| 74 | + |
| 75 | +msgid "" |
| 76 | +"This function returns a :term:`borrowed reference` to the referenced object. " |
| 77 | +"This means that you should always call :c:func:`Py_INCREF` on the object " |
| 78 | +"except when it cannot be destroyed before the last usage of the borrowed " |
| 79 | +"reference." |
| 80 | +msgstr "" |
| 81 | + |
| 82 | +msgid "" |
| 83 | +"Similar to :c:func:`PyWeakref_GetObject`, but implemented as a macro that " |
| 84 | +"does no error checking." |
| 85 | +msgstr "" |
| 86 | + |
| 87 | +msgid "" |
| 88 | +"This function is called by the :c:member:`~PyTypeObject.tp_dealloc` handler " |
| 89 | +"to clear weak references." |
| 90 | +msgstr "" |
| 91 | + |
| 92 | +msgid "" |
| 93 | +"This iterates through the weak references for *object* and calls callbacks " |
| 94 | +"for those references which have one. It returns when all callbacks have been " |
| 95 | +"attempted." |
| 96 | +msgstr "" |
0 commit comments