@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-11-15 14:12 +0000\n "
14+ "POT-Creation-Date : 2025-11-17 14:14 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -471,6 +471,21 @@ msgid ""
471471"wrapper object calls."
472472msgstr ""
473473
474+ msgid ""
475+ "The type object corresponding to Python C method objects. This is available "
476+ "as :class:`types.BuiltinMethodType` in the Python layer."
477+ msgstr ""
478+
479+ msgid ""
480+ "Return true if *op* is an instance of the :c:type:`PyCMethod_Type` type or a "
481+ "subtype of it. This function always succeeds."
482+ msgstr ""
483+
484+ msgid ""
485+ "This is the same as :c:func:`PyCMethod_Check`, but does not account for "
486+ "subtypes."
487+ msgstr ""
488+
474489msgid ""
475490"Turn *ml* into a Python :term:`callable` object. The caller must ensure that "
476491"*ml* outlives the :term:`callable`. Typically, *ml* is defined as a static "
@@ -497,12 +512,79 @@ msgid ""
497512"function. Must be set if :c:macro:`METH_METHOD` is set on ``ml->ml_flags``."
498513msgstr ""
499514
515+ msgid ""
516+ "The type object corresponding to Python C function objects. This is "
517+ "available as :class:`types.BuiltinFunctionType` in the Python layer."
518+ msgstr ""
519+
520+ msgid ""
521+ "Return true if *op* is an instance of the :c:type:`PyCFunction_Type` type or "
522+ "a subtype of it. This function always succeeds."
523+ msgstr ""
524+
525+ msgid ""
526+ "This is the same as :c:func:`PyCFunction_Check`, but does not account for "
527+ "subtypes."
528+ msgstr ""
529+
500530msgid "Equivalent to ``PyCMethod_New(ml, self, module, NULL)``."
501531msgstr ""
502532
503533msgid "Equivalent to ``PyCMethod_New(ml, self, NULL, NULL)``."
504534msgstr ""
505535
536+ msgid ""
537+ "Get the function's flags on *func* as they were passed to :c:member:"
538+ "`~PyMethodDef.ml_flags`."
539+ msgstr ""
540+
541+ msgid ""
542+ "If *func* is not a C function object, this fails with an exception. *func* "
543+ "must not be ``NULL``."
544+ msgstr ""
545+
546+ msgid ""
547+ "This function returns the function's flags on success, and ``-1`` with an "
548+ "exception set on failure."
549+ msgstr ""
550+
551+ msgid ""
552+ "This is the same as :c:func:`PyCFunction_GetFlags`, but without error or "
553+ "type checking."
554+ msgstr ""
555+
556+ msgid ""
557+ "Get the function pointer on *func* as it was passed to :c:member:"
558+ "`~PyMethodDef.ml_meth`."
559+ msgstr ""
560+
561+ msgid ""
562+ "This function returns the function pointer on success, and ``NULL`` with an "
563+ "exception set on failure."
564+ msgstr ""
565+
566+ msgid ""
567+ "This is the same as :c:func:`PyCFunction_GetFunction`, but without error or "
568+ "type checking."
569+ msgstr ""
570+
571+ msgid ""
572+ "Get the \" self\" object on *func*. This is the object that would be passed "
573+ "to the first argument of a :c:type:`PyCFunction`. For C function objects "
574+ "created through a :c:type:`PyMethodDef` on a :c:type:`PyModuleDef`, this is "
575+ "the resulting module object."
576+ msgstr ""
577+
578+ msgid ""
579+ "This function returns a :term:`borrowed reference` to the \" self\" object on "
580+ "success, and ``NULL`` with an exception set on failure."
581+ msgstr ""
582+
583+ msgid ""
584+ "This is the same as :c:func:`PyCFunction_GetSelf`, but without error or type "
585+ "checking."
586+ msgstr ""
587+
506588msgid "Accessing attributes of extension types"
507589msgstr ""
508590
0 commit comments