88msgstr ""
99"Project-Id-Version : Python 3.6\n "
1010"Report-Msgid-Bugs-To : \n "
11- "POT-Creation-Date : 2017-04-02 22:11 +0200\n "
11+ "POT-Creation-Date : 2017-09-21 09:15 +0200\n "
1212"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
1313"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
1414"Language-Team : LANGUAGE <LL@li.org>\n "
@@ -133,14 +133,17 @@ msgid ""
133133msgstr ""
134134
135135#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
136+ #: ../Doc/c-api/structures.rst:305
136137msgid "Field"
137138msgstr ""
138139
139140#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
141+ #: ../Doc/c-api/structures.rst:305
140142msgid "C Type"
141143msgstr "Type C"
142144
143145#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
146+ #: ../Doc/c-api/structures.rst:305
144147msgid "Meaning"
145148msgstr "Signification"
146149
@@ -150,7 +153,8 @@ msgstr ""
150153
151154#: ../Doc/c-api/structures.rst:131 ../Doc/c-api/structures.rst:139
152155#: ../Doc/c-api/structures.rst:242 ../Doc/c-api/structures.rst:255
153- #: ../Doc/c-api/structures.rst:271
156+ #: ../Doc/c-api/structures.rst:271 ../Doc/c-api/structures.rst:307
157+ #: ../Doc/c-api/structures.rst:315
154158msgid "char \\ *"
155159msgstr ""
156160
@@ -488,3 +492,89 @@ msgid ""
488492"macro:`READONLY`. Only :c:macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` "
489493"members can be deleted. (They are set to *NULL*)."
490494msgstr ""
495+
496+ #: ../Doc/c-api/structures.rst:301
497+ msgid ""
498+ "Structure to define property-like access for a type. See also description of "
499+ "the :c:member:`PyTypeObject.tp_getset` slot."
500+ msgstr ""
501+
502+ #: ../Doc/c-api/structures.rst:307
503+ msgid "name"
504+ msgstr ""
505+
506+ #: ../Doc/c-api/structures.rst:307
507+ msgid "attribute name"
508+ msgstr ""
509+
510+ #: ../Doc/c-api/structures.rst:309
511+ msgid "get"
512+ msgstr ""
513+
514+ #: ../Doc/c-api/structures.rst:309
515+ msgid "getter"
516+ msgstr ""
517+
518+ #: ../Doc/c-api/structures.rst:309
519+ msgid "C Function to get the attribute"
520+ msgstr ""
521+
522+ #: ../Doc/c-api/structures.rst:311
523+ msgid "set"
524+ msgstr ""
525+
526+ #: ../Doc/c-api/structures.rst:311
527+ msgid "setter"
528+ msgstr ""
529+
530+ #: ../Doc/c-api/structures.rst:311
531+ msgid ""
532+ "optional C function to set or delete the attribute, if omitted the attribute "
533+ "is readonly"
534+ msgstr ""
535+
536+ #: ../Doc/c-api/structures.rst:315
537+ msgid "doc"
538+ msgstr ""
539+
540+ #: ../Doc/c-api/structures.rst:315
541+ msgid "optional docstring"
542+ msgstr ""
543+
544+ #: ../Doc/c-api/structures.rst:317
545+ msgid "closure"
546+ msgstr ""
547+
548+ #: ../Doc/c-api/structures.rst:317
549+ msgid "void \\ *"
550+ msgstr ""
551+
552+ #: ../Doc/c-api/structures.rst:317
553+ msgid ""
554+ "optional function pointer, providing additional data for getter and setter"
555+ msgstr ""
556+
557+ #: ../Doc/c-api/structures.rst:322
558+ msgid ""
559+ "The ``get`` function takes one :c:type:`PyObject\\ *` parameter (the "
560+ "instance) and a function pointer (the associated ``closure``)::"
561+ msgstr ""
562+
563+ #: ../Doc/c-api/structures.rst:327
564+ msgid ""
565+ "It should return a new reference on success or *NULL* with a set exception "
566+ "on failure."
567+ msgstr ""
568+
569+ #: ../Doc/c-api/structures.rst:330
570+ msgid ""
571+ "``set`` functions take two :c:type:`PyObject\\ *` parameters (the instance "
572+ "and the value to be set) and a function pointer (the associated "
573+ "``closure``)::"
574+ msgstr ""
575+
576+ #: ../Doc/c-api/structures.rst:335
577+ msgid ""
578+ "In case the attribute should be deleted the second parameter is *NULL*. "
579+ "Should return ``0`` on success or ``-1`` with a set exception on failure."
580+ msgstr ""
0 commit comments