8000 Translate file library/struct.po by mgiannopoulos24 · Pull Request #593 · python/python-docs-gr · GitHub
[go: up one dir, main page]

Skip to content

Translate file library/struct.po #593

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Apr 3, 2025
Merged
Prev Previous commit
fix msgid
  • Loading branch information
mgiannopoulos24 committed Apr 1, 2025
commit 34c07442a34549d333cd8cadb68fe02ddbc1db87
14 changes: 7 additions & 7 deletions library/struct.po
Original file line number Diff line number Diff line change
Expand Up @@ -815,13 +815,13 @@ msgstr ""
msgid ""
"For the ``'s'`` format character, the count is interpreted as the length of "
"the bytes, not a repeat count like for the other format characters; for "
"example, ``'10s'`` means a single 10-byte string mapping to or from a "
"single , while ``'10c'`` means 10 separate one byte character elements (e."
"g., ``cccccccccc``) mapping to or from ten different Python byte objects. "
"(See :ref:`struct-examples` for a concrete demonstration of the difference.) "
"If a count is not given, it defaults to 1. For packing, the string is "
"truncated or padded with null bytes as appropriate to make it fit. For "
"unpacking, the resulting bytes object always has exactly the specified "
"example, ``'10s'`` means a single 10-byte string mapping to or from a single "
"Python byte string, while ``'10c'`` means 10 separate one byte character "
"elements (e.g., ``cccccccccc``) mapping to or from ten different Python byte "
"objects. (See :ref:`struct-examples` for a concrete demonstration of the "
"difference.) If a count is not given, it defaults to 1. For packing, the "
"string is truncated or padded with null bytes as appropriate to make it fit. "
"For unpacking, the resulting bytes object always has exactly the specified "
"number of bytes. As a special case, ``'0s'`` means a single, empty string "
"(while ``'0c'`` means 0 characters)."
msgstr ""
Expand Down
0