8
8
msgstr ""
9
9
"Project-Id-Version : Python 3.6\n "
10
10
"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 "
12
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13
13
"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
14
14
"Language-Team : LANGUAGE <LL@li.org>\n "
@@ -133,14 +133,17 @@ msgid ""
133
133
msgstr ""
134
134
135
135
#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
136
+ #: ../Doc/c-api/structures.rst:305
136
137
msgid "Field"
137
138
msgstr ""
138
139
139
140
#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
141
+ #: ../Doc/c-api/structures.rst:305
140
142
msgid "C Type"
141
143
msgstr "Type C"
142
144
143
145
#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
146
+ #: ../Doc/c-api/structures.rst:305
144
147
msgid "Meaning"
145
148
msgstr "Signification"
146
149
@@ -150,7 +153,8 @@ msgstr ""
150
153
151
154
#: ../Doc/c-api/structures.rst:131 ../Doc/c-api/structures.rst:139
152
155
#: ../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
154
158
msgid "char \\ *"
155
159
msgstr ""
156
160
@@ -488,3 +492,89 @@ msgid ""
488
492
"macro:`READONLY`. Only :c:macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` "
489
493
"members can be deleted. (They are set to *NULL*)."
490
494
msgstr ""
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