@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.13\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-07-11 15:02 +0000\n "
14+ "POT-Creation-Date : 2025-07-18 15:20 +0000\n "
1515"PO-Revision-Date : 2025-05-08 05:09+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -248,13 +248,13 @@ msgstr ""
248248
249249msgid ""
250250"To help measure the effectiveness of the cache and tune the *maxsize* "
251- "parameter, the wrapped function is instrumented with a :func:`cache_info` "
251+ "parameter, the wrapped function is instrumented with a :func:`! cache_info` "
252252"function that returns a :term:`named tuple` showing *hits*, *misses*, "
253253"*maxsize* and *currsize*."
254254msgstr ""
255255
256256msgid ""
257- "The decorator also provides a :func:`cache_clear` function for clearing or "
257+ "The decorator also provides a :func:`! cache_clear` function for clearing or "
258258"invalidating the cache."
259259msgstr ""
260260
@@ -349,9 +349,9 @@ msgid ""
349349msgstr ""
350350
351351msgid ""
352- "The class must define one of :meth:`__lt__`, :meth:`__le__`, :meth:`__gt__`, "
353- "or :meth:`__ge__`. In addition, the class should supply an :meth:`__eq__` "
354- "method."
352+ "The class must define one of :meth:`~object. __lt__`, :meth:`~object. "
353+ "__le__`, :meth:`~object.__gt__`, or :meth:`~object. __ge__`. In addition, the "
354+ "class should supply an :meth:`~object.__eq__` method."
355355msgstr ""
356356
357357msgid ""
@@ -432,7 +432,7 @@ msgstr ""
432432
433433msgid ""
434434"When *func* is a descriptor (such as a normal Python function, :func:"
435- "`classmethod`, :func:`staticmethod`, :func:`abstractmethod` or another "
435+ "`classmethod`, :func:`staticmethod`, :func:`~abc. abstractmethod` or another "
436436"instance of :class:`partialmethod`), calls to ``__get__`` are delegated to "
437437"the underlying descriptor, and an appropriate :ref:`partial object<partial-"
438438"objects>` returned as the result."
@@ -521,7 +521,7 @@ msgid ""
521521msgstr ""
522522
523523msgid ""
524- "To add overloaded implementations to the function, use the :func:`register` "
524+ "To add overloaded implementations to the function, use the :func:`! register` "
525525"attribute of the generic function, which can be used as a decorator. For "
526526"functions annotated with types, the decorator will infer the type of the "
527527"first argument automatically::"
@@ -601,7 +601,8 @@ msgstr ""
601601
602602msgid ""
603603"To enable registering :term:`lambdas<lambda>` and pre-existing functions, "
604- "the :func:`register` attribute can also be used in a functional form::"
604+ "the :func:`~singledispatch.register` attribute can also be used in a "
605+ "functional form::"
605606msgstr ""
606607
607608msgid ""
@@ -616,9 +617,9 @@ msgstr ""
616617">>> fun.register(type(None), nothing)"
617618
618619msgid ""
619- "The :func:`register` attribute returns the undecorated function. This "
620- "enables decorator stacking, :mod:`pickling<pickle>`, and the creation of "
621- "unit tests for each variant independently::"
620+ "The :func:`~singledispatch. register` attribute returns the undecorated "
621+ "function. This enables decorator stacking, :mod:`pickling<pickle>`, and the "
622+ "creation of unit tests for each variant independently::"
622623msgstr ""
623624
624625msgid ""
@@ -712,12 +713,14 @@ msgid ""
712713"<function fun at 0x103fe0000>"
713714msgstr ""
714715
715- msgid "The :func:`register` attribute now supports using type annotations."
716+ msgid ""
717+ "The :func:`~singledispatch.register` attribute now supports using type "
718+ "annotations."
716719msgstr ""
717720
718721msgid ""
719- "The :func:`register` attribute now supports :data:`types.UnionType` and : "
720- "data:`typing.Union` as type annotations."
722+ "The :func:`~singledispatch. register` attribute now supports :data:`types."
723+ "UnionType` and : data:`typing.Union` as type annotations."
721724msgstr ""
722725
723726msgid ""
@@ -865,8 +868,8 @@ msgstr ""
865868
866869msgid ""
867870"Without the use of this decorator factory, the name of the example function "
868- "would have been ``'wrapper'``, and the docstring of the original :func:"
869- "` example` would have been lost."
871+ "would have been ``'wrapper'``, and the docstring of the original :func:`! "
872+ "example` would have been lost."
870873msgstr ""
871874
872875msgid ":class:`partial` Objects"
0 commit comments