77msgstr ""
88"Project-Id-Version :Python 3.11\n "
99"Report-Msgid-Bugs-To :\n "
10- "POT-Creation-Date :2023-02-01 22:19 +0000\n "
10+ "POT-Creation-Date :2023-02-04 22:37 +0000\n "
1111"PO-Revision-Date :YEAR-MO-DA HO:MI+ZONE\n "
1212"Last-Translator :\n "
1313"Language-Team :TURKISH <python.docs.tr@gmail.com>\n "
@@ -202,7 +202,7 @@ msgstr ""
202202msgid ""
203203"The actual representation of values is determined by the machine "
204204"architecture (strictly speaking, by the C implementation). The actual size "
205- "can be accessed through the :attr:`itemsize` attribute."
205+ "can be accessed through the :attr:`array. itemsize` attribute."
206206msgstr ""
207207
208208#: library/array.rst:65
@@ -232,13 +232,7 @@ msgid ""
232232"initializer is passed to the :meth:`extend` method."
233233msgstr ""
234234
235- #: library/array.rst:11
236- msgid ""
237- "Raises an :ref:`auditing event <auditing>` ``array.__new__`` with arguments "
238- "``typecode``, ``initializer``."
239- msgstr ""
240-
241- #: library/array.rst:91
235+ #: library/array.rst:88
242236msgid ""
243237"Array objects support the ordinary sequence operations of indexing, slicing, "
244238"concatenation, and multiplication. When using slice assignment, the "
@@ -248,35 +242,37 @@ msgid ""
248242"object>` are supported."
249243msgstr ""
250244
251- #: library/array.rst:97
252- msgid "The following data items and methods are also supported:"
245+ #: library/array.rst:17
246+ msgid ""
247+ "Raises an :ref:`auditing event <auditing>` ``array.__new__`` with arguments "
248+ "``typecode``, ``initializer``."
253249msgstr ""
254250
255- #: library/array.rst:101
251+ #: library/array.rst:99
256252msgid "The typecode character used to create the array."
257253msgstr ""
258254
259- #: library/array.rst:106
255+ #: library/array.rst:104
260256msgid "The length in bytes of one array item in the internal representation."
261257msgstr ""
262258
263- #: library/array.rst:111
259+ #: library/array.rst:109
264260msgid "Append a new item with value *x* to the end of the array."
265261msgstr ""
266262
267- #: library/array.rst:116
263+ #: library/array.rst:114
268264msgid ""
269265"Return a tuple ``(address, length)`` giving the current memory address and "
270266"the length in elements of the buffer used to hold array's contents. The "
271267"size of the memory buffer in bytes can be computed as ``array.buffer_info()"
272268"[1] * array.itemsize``. This is occasionally useful when working with low-"
273269"level (and inherently unsafe) I/O interfaces that require memory addresses, "
274- "such as certain :c:func:`ioctl` operations. The returned numbers are valid "
270+ "such as certain :c:func:`! ioctl` operations. The returned numbers are valid "
275271"as long as the array exists and no length-changing operations are applied to "
276272"it."
277273msgstr ""
278274
279- #: library/array.rst:126
275+ #: library/array.rst:124
280276msgid ""
281277"When using array objects from code written in C or C++ (the only way to "
282278"effectively make use of this information), it makes more sense to use the "
@@ -285,119 +281,119 @@ msgid ""
285281"interface is documented in :ref:`bufferobjects`."
286282msgstr ""
287283
288- #: library/array.rst:135
284+ #: library/array.rst:133
289285msgid ""
290286"\" Byteswap\" all items of the array. This is only supported for values "
291287"which are 1, 2, 4, or 8 bytes in size; for other types of values, :exc:"
292288"`RuntimeError` is raised. It is useful when reading data from a file "
293289"written on a machine with a different byte order."
294290msgstr ""
295291
296- #: library/array.rst:143
292+ #: library/array.rst:141
297293msgid "Return the number of occurrences of *x* in the array."
298294msgstr ""
299295
300- #: library/array.rst:148
296+ #: library/array.rst:146
301297msgid ""
302298"Append items from *iterable* to the end of the array. If *iterable* is "
303299"another array, it must have *exactly* the same type code; if not, :exc:"
304300"`TypeError` will be raised. If *iterable* is not an array, it must be "
305301"iterable and its elements must be the right type to be appended to the array."
306302msgstr ""
307303
308- #: library/array.rst:156
304+ #: library/array.rst:154
309305msgid ""
310306"Appends items from the string, interpreting the string as an array of "
311307"machine values (as if it had been read from a file using the :meth:"
312308"`fromfile` method)."
313309msgstr ""
314310
315- #: library/array.rst:159
316- msgid ":meth:`fromstring` is renamed to :meth:`frombytes` for clarity."
311+ #: library/array.rst:157
312+ msgid ":meth:`! fromstring` is renamed to :meth:`frombytes` for clarity."
317313msgstr ""
318314
319- #: library/array.rst:165
315+ #: library/array.rst:163
320316msgid ""
321317"Read *n* items (as machine values) from the :term:`file object` *f* and "
322318"append them to the end of the array. If less than *n* items are available, :"
323319"exc:`EOFError` is raised, but the items that were available are still "
324320"inserted into the array."
325321msgstr ""
326322
327- #: library/array.rst:173
323+ #: library/array.rst:171
328324msgid ""
329325"Append items from the list. This is equivalent to ``for x in list: a."
330326"append(x)`` except that if there is a type error, the array is unchanged."
331327msgstr ""
332328
333- #: library/array.rst:179
329+ #: library/array.rst:177
334330msgid ""
335331"Extends this array with data from the given unicode string. The array must "
336332"be a type ``'u'`` array; otherwise a :exc:`ValueError` is raised. Use "
337333"``array.frombytes(unicodestring.encode(enc))`` to append Unicode data to an "
338334"array of some other type."
339335msgstr ""
340336
341- #: library/array.rst:187
337+ #: library/array.rst:185
342338msgid ""
343339"Return the smallest *i* such that *i* is the index of the first occurrence "
344340"of *x* in the array. The optional arguments *start* and *stop* can be "
345341"specified to search for *x* within a subsection of the array. Raise :exc:"
346342"`ValueError` if *x* is not found."
347343msgstr ""
348344
349- #: library/array.rst:192
345+ #: library/array.rst:190
350346msgid "Added optional *start* and *stop* parameters."
351347msgstr ""
352348
353- #: library/array.rst:197
349+ #: library/array.rst:196
354350msgid ""
355351"Insert a new item with value *x* in the array before position *i*. Negative "
356352"values are treated as being relative to the end of the array."
357353msgstr ""
358354
359- #: library/array.rst:203
355+ #: library/array.rst:202
360356msgid ""
361357"Removes the item with the index *i* from the array and returns it. The "
362358"optional argument defaults to ``-1``, so that by default the last item is "
363359"removed and returned."
364360msgstr ""
365361
366- #: library/array.rst:210
362+ #: library/array.rst:209
367363msgid "Remove the first occurrence of *x* from the array."
368364msgstr ""
369365
370- #: library/array.rst:215
366+ #: library/array.rst:214
371367msgid "Reverse the order of the items in the array."
372368msgstr ""
373369
374- #: library/array.rst:220
370+ #: library/array.rst:219
375371msgid ""
376372"Convert the array to an array of machine values and return the bytes "
377373"representation (the same sequence of bytes that would be written to a file "
378374"by the :meth:`tofile` method.)"
379375msgstr ""
380376
381- #: library/array.rst:224
382- msgid ":meth:`tostring` is renamed to :meth:`tobytes` for clarity."
377+ #: library/array.rst:223
378+ msgid ":meth:`! tostring` is renamed to :meth:`tobytes` for clarity."
383379msgstr ""
384380
385- #: library/array.rst:230
381+ #: library/array.rst:229
386382msgid "Write all items (as machine values) to the :term:`file object` *f*."
387383msgstr ""
388384
389- #: library/array.rst:235
385+ #: library/array.rst:234
390386msgid "Convert the array to an ordinary list with the same items."
391387msgstr ""
392388
393- #: library/array.rst:240
389+ #: library/array.rst:239
394390msgid ""
395391"Convert the array to a unicode string. The array must be a type ``'u'`` "
396392"array; otherwise a :exc:`ValueError` is raised. Use ``array.tobytes()."
397393"decode(enc)`` to obtain a unicode string from an array of some other type."
398394msgstr ""
399395
400- #: library/array.rst:245
396+ #: library/array.rst:244
401397msgid ""
402398"When an array object is printed or converted to a string, it is represented "
403399"as ``array(typecode, initializer)``. The *initializer* is omitted if the "
@@ -408,28 +404,28 @@ msgid ""
408404"``from array import array``. Examples::"
409405msgstr ""
410406
411- #: library/array.rst:262
407+ #: library/array.rst:261
412408msgid "Module :mod:`struct`"
413409msgstr ""
414410
415- #: library/array.rst:262
411+ #: library/array.rst:261
416412msgid "Packing and unpacking of heterogeneous binary data."
417413msgstr ""
418414
419- #: library/array.rst:266
415+ #: library/array.rst:265
420416msgid "Module :mod:`xdrlib`"
421417msgstr ""
422418
423- #: library/array.rst:265
419+ #: library/array.rst:264
424420msgid ""
425421"Packing and unpacking of External Data Representation (XDR) data as used in "
426422"some remote procedure call systems."
427423msgstr ""
428424
429- #: library/array.rst:268
425+ #: library/array.rst:267
430426msgid "`NumPy <https://numpy.org/>`_"
431427msgstr ""
432428
433- #: library/array.rst:269
429+ #: library/array.rst:268
434430msgid "The NumPy package defines another array type."
435431msgstr ""