88msgstr ""
99"Project-Id-Version : Python 3.14\n "
1010"Report-Msgid-Bugs-To : \n "
11- "POT-Creation-Date : 2026-04-17 14:50 +0000\n "
11+ "POT-Creation-Date : 2026-04-29 15:53 +0000\n "
1212"PO-Revision-Date : 2025-09-16 00:01+0000\n "
1313"Language-Team : Tamil (https://app.transifex.com/python-doc/teams/5390/ta/)\n "
1414"MIME-Version : 1.0\n "
@@ -308,10 +308,10 @@ msgstr ""
308308msgid ":c:expr:`signed char`"
309309msgstr ""
310310
311- msgid "integer "
311+ msgid "int "
312312msgstr ""
313313
314- msgid "\\ (1), \\ ( 2)"
314+ msgid "\\ (2)"
315315msgstr ""
316316
317317msgid "``B``"
@@ -320,9 +320,6 @@ msgstr ""
320320msgid ":c:expr:`unsigned char`"
321321msgstr ""
322322
323- msgid "\\ (2)"
324- msgstr ""
325-
326323msgid "``?``"
327324msgstr ""
328325
@@ -398,7 +395,7 @@ msgstr ""
398395msgid ":c:type:`ssize_t`"
399396msgstr ""
400397
401- msgid "\\ (3)"
398+ msgid "\\ (2), \\ ( 3)"
402399msgstr ""
403400
404401msgid "``N``"
@@ -479,7 +476,7 @@ msgstr ""
479476msgid ":c:expr:`void \\ *`"
480477msgstr ""
481478
482- msgid "\\ (5)"
479+ msgid "\\ (2), \\ ( 5)"
483480msgstr ""
484481
485482msgid "Added support for the ``'n'`` and ``'N'`` formats."
@@ -554,27 +551,30 @@ msgid ""
554551"The ``'p'`` format character encodes a \" Pascal string\" , meaning a short "
555552"variable-length string stored in a *fixed number of bytes*, given by the "
556553"count. The first byte stored is the length of the string, or 255, whichever "
557- "is smaller. The bytes of the string follow. If the string passed in to :"
558- "func:`pack` is too long (longer than the count minus 1), only the leading "
559- "``count-1`` bytes of the string are stored. If the string is shorter than "
560- "``count-1``, it is padded with null bytes so that exactly count bytes in all "
561- "are used. Note that for :func:`unpack`, the ``'p'`` format character "
562- "consumes ``count`` bytes, but that the string returned can never contain "
563- "more than 255 bytes."
554+ "is smaller. The bytes of the string follow. If the byte string passed in "
555+ "to :func:`pack` is too long (longer than the count minus 1), only the "
556+ "leading ``count-1`` bytes of the string are stored. If the byte string is "
557+ "shorter than ``count-1``, it is padded with null bytes so that exactly count "
558+ "bytes in all are used. Note that for :func:`unpack`, the ``'p'`` format "
559+ "character consumes ``count`` bytes, but that the :class:`!bytes` object "
560+ "returned can never contain more than 255 bytes. When packing, arguments of "
561+ "types :class:`bytes` and :class:`bytearray` are accepted."
564562msgstr ""
565563
566564msgid ""
567565"For the ``'s'`` format character, the count is interpreted as the length of "
568- "the bytes, not a repeat count like for the other format characters; for "
569- "example, ``'10s'`` means a single 10-byte string mapping to or from a single "
570- "Python byte string, while ``'10c'`` means 10 separate one byte character "
571- "elements (e.g., ``cccccccccc``) mapping to or from ten different Python byte "
572- "objects. (See :ref:`struct-examples` for a concrete demonstration of the "
573- "difference.) If a count is not given, it defaults to 1. For packing, the "
574- "string is truncated or padded with null bytes as appropriate to make it fit. "
575- "For unpacking, the resulting bytes object always has exactly the specified "
576- "number of bytes. As a special case, ``'0s'`` means a single, empty string "
577- "(while ``'0c'`` means 0 characters)."
566+ "the byte string, not a repeat count like for the other format characters; "
567+ "for example, ``'10s'`` means a single 10-byte string mapping to or from a "
568+ "single Python byte string, while ``'10c'`` means 10 separate one byte "
569+ "character elements (e.g., ``cccccccccc``) mapping to or from ten different "
570+ "Python byte objects. (See :ref:`struct-examples` for a concrete "
571+ "demonstration of the difference.) If a count is not given, it defaults to "
572+ "1. For packing, the byte string is truncated or padded with null bytes as "
573+ "appropriate to make it fit. For unpacking, the resulting :class:`!bytes` "
574+ "object always has exactly the specified number of bytes. As a special case, "
575+ "``'0s'`` means a single, empty byte string (while ``'0c'`` means 0 "
576+ "characters). When packing, arguments of types :class:`bytes` and :class:"
577+ "`bytearray` are accepted."
578578msgstr ""
579579
580580msgid ""
0 commit comments